A C D E G H I N O P R S V W X 

A

accept(DataQualifierVisitor) - Method in enum org.mule.extension.introspection.DataQualifier
 
addCapability(Object) - Method in class org.mule.extension.introspection.declaration.fluent.CapableDeclaration
Adds a capability to this declaration
addConfig(ConfigurationDeclaration) - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
addOperation(OperationDeclaration) - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
addParameter(ParameterDeclaration) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
Adds the given parameter to the declaring configuration
addParameter(ParameterDeclaration) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
addParameter(ParameterDeclaration) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor

C

Capable - Interface in org.mule.extension.introspection
An object is capable if it may provide different facet of additional information.
CapableDeclaration<T extends CapableDeclaration> - Class in org.mule.extension.introspection.declaration.fluent
Base class for a declaration object on which capabilities can be added
CapableDeclaration() - Constructor for class org.mule.extension.introspection.declaration.fluent.CapableDeclaration
 
Configuration - Interface in org.mule.extension.introspection
A named configuration for an extension

Configurations describe different ways to initialize a scope for operations.

ConfigurationDeclaration - Class in org.mule.extension.introspection.declaration.fluent
A declaration object for a Configuration.
ConfigurationDescriptor - Class in org.mule.extension.introspection.declaration.fluent
A Descriptor which allows configuring a ConfigurationDeclaration through a fluent API
ConfigurationInstanceProvider<T> - Interface in org.mule.extension.runtime
A component responsible for providing instances which are realizations of a give Configuration model.
ConfigurationInstanceRegistrationCallback - Interface in org.mule.extension.runtime
A callback to be used by components which creates new instances that are the realization of a Configuration model.
ConfigurationInstantiator - Interface in org.mule.extension.introspection
Creates instances of objects which are compliant with the model described by the owning Configuration object.
contribute(Extension, ResourcesGenerator) - Method in interface org.mule.extension.resources.spi.GenerableResourceContributor
Contributes if necessary to the generation of the given extension's resources.
createExecutor() - Method in interface org.mule.extension.introspection.declaration.fluent.OperationExecutorFactory
Creates a new OperationExecutor
createFrom(Descriptor) - Method in interface org.mule.extension.introspection.ExtensionFactory
Creates a Extension from the given Descriptor
createFrom(Descriptor, DescribingContext) - Method in interface org.mule.extension.introspection.ExtensionFactory
Creates a Extension from the given Descriptor using a specifing describingContext

D

DataQualifier - Enum in org.mule.extension.introspection
Provides a high level definition about the "family" of a given DataType
DataQualifierFactory - Class in org.mule.extension.introspection
Factory pattern implementation that provides a DataQualifier for a given Class
DataQualifierFactory() - Constructor for class org.mule.extension.introspection.DataQualifierFactory
 
DataQualifierVisitor - Interface in org.mule.extension.introspection
Visitor interface to be used with DataQualifier

Because the qualifier is an enum, it's not a traditional implementation of visitor in which the dynamic linking relies on the concrete class of the visitable object.

DataType - Class in org.mule.extension.introspection
A definition of an abstract data type, which provides information that goes beyond it's actual Type, but also provides information about its parametrized generic types and DataQualifier
Declaration - Class in org.mule.extension.introspection.declaration.fluent
A declaration object for a Extension.
DeclarationDescriptor - Class in org.mule.extension.introspection.declaration.fluent
A Descriptor which allows configuring a Declaration through a fluent API
DeclarationDescriptor(String, String) - Constructor for class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
Constructor for this descriptor
defaultingTo(Object) - Method in class org.mule.extension.introspection.declaration.fluent.OptionalParameterDescriptor
Adds a default value for the parameter
describe() - Method in interface org.mule.extension.introspection.declaration.Describer
Describes the extension as a Descriptor
Described - Interface in org.mule.extension.introspection
A generic contract for a class that has a name and a description.
describedAs(String) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
Adds a description to the configuration
describedAs(String) - Method in class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
Adds a description
describedAs(String) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
Adds a description
describedAs(String) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Adds a description
Describer - Interface in org.mule.extension.introspection.declaration
Every Extension must ship with one implementation of this interface which has to be discoverable through standard SPI and have a default constructor.
DescriberPostProcessor - Interface in org.mule.extension.introspection.declaration.spi
A post processor that allows doing extra work before a Describer finishes describing a Descriptor

This allows to customize the discovery process by given a hooking point for manipulating the Declaration before it actually generates the final Extension instance.

DescribingContext - Interface in org.mule.extension.introspection.declaration
Used for propagating state across all the components that may take part on the describing of an Extension and its DescriberPostProcessors

Once the Describer finishes applying its logic, it will propagate this context through all the found DescriberPostProcessors, which means that any side effects applied by any of the before mentioned will be visible by the next ones.

Descriptor - Interface in org.mule.extension.introspection.declaration.fluent
A descriptor is a flat, intermediate representation of an extension model.
discoverExtensions(ClassLoader) - Method in interface org.mule.extension.ExtensionManager
Scans the classpath visible to the given ClassLoader and registers them.
dumpAll() - Method in interface org.mule.extension.resources.ResourcesGenerator
Writes all the GeneratedResources that were generated through ResourcesGenerator.get(String) and writes them to a persistent store.

E

equals(Object) - Method in class org.mule.extension.introspection.DataType
Defines equality by checking that the given object is a DataType with matching DataType.getRawType() and DataType.getQualifier(), which also returns a DataType.getGenericTypes() which every element (if any) also matches the one in this instance
execute(OperationContext) - Method in interface org.mule.extension.runtime.OperationExecutor
Executes the owning operation using the given operationContext.
executorsCreatedBy(OperationExecutorFactory) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
Specifies the OperationExecutorFactory to be used to create OperationExecutor instances.
Extension - Interface in org.mule.extension.introspection
An Extension that provides packaged functionality.
ExtensionFactory - Interface in org.mule.extension.introspection
A factory that can take a Descriptor and transform it into an actual Extension.
ExtensionManager - Interface in org.mule.extension
Manages the Extensions available in the current context and their state.

G

GenerableResourceContributor - Interface in org.mule.extension.resources.spi
A delegate object that is obtained through standard SPI discovery mechanism and that acts as a delegate inside a chain of responsibility pattern, in order to generate backing resources for all the Extensions declared between a module

Each contributor is responsible for declaring the resources that it wants to generate/contribute to and add its piece of content.

GeneratedResource - Interface in org.mule.extension.resources
A resource that supports a Extension and which can be generated by the runtime
generateFor(Extension) - Method in interface org.mule.extension.resources.ResourcesGenerator
Generates resources for the given extension.
get(String) - Method in interface org.mule.extension.resources.ResourcesGenerator
Returns a GeneratedResource that will point to the given filepath.
get(OperationContext) - Method in interface org.mule.extension.runtime.ConfigurationInstanceProvider
Returns a configuration instance to serve the given operationContext.
getCapabilities(Class<T>) - Method in interface org.mule.extension.introspection.Capable
Returns a Set with the capabilities which are an instance of the given capabilityType.
getCapabilities() - Method in class org.mule.extension.introspection.declaration.fluent.CapableDeclaration
 
getCapabilities(Class<C>) - Method in class org.mule.extension.introspection.declaration.fluent.CapableDeclaration
Returns a Set with the capabilities which are an instance of the given capabilityType.
getCheckedParameter(String, Class<T>) - Method in interface org.mule.extension.introspection.declaration.DescribingContext
Obtains the custom parameter registered under key and verifies that (if not null) is of type expectedType.
getConfiguration(String) - Method in interface org.mule.extension.introspection.Extension
Returns the Configuration that matches the given name.
getConfigurationInstance() - Method in interface org.mule.extension.runtime.OperationContext
Returns an object which is configuring the operation being executed.
getConfigurationInstantiator() - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDeclaration
 
getConfigurations() - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
Returns an immutable list with the ConfigurationDeclaration instances that have been declared so far.
getConfigurations() - Method in interface org.mule.extension.introspection.Extension
Returns the Configurations available for this extension.
getContentBuilder() - Method in interface org.mule.extension.resources.GeneratedResource
The builder which GenerableResourceContributors will use to contribute their part
getCustomParameters() - Method in interface org.mule.extension.introspection.declaration.DescribingContext
A Map to hold custom parameters that implementations of Describer and DescriberPostProcessor might want to share with each other
getDeclaration() - Method in class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
 
getDeclaration() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Gets the declaration object for this descriptor
getDeclarationDescriptor() - Method in interface org.mule.extension.introspection.declaration.DescribingContext
The DeclarationDescriptor in which the extension is being described into
getDefaultValue() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
getDefaultValue() - Method in interface org.mule.extension.introspection.Parameter
The default value for this parameter.
getDescription() - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDeclaration
 
getDescription() - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
 
getDescription() - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
 
getDescription() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
getDescription() - Method in interface org.mule.extension.introspection.Described
Returns the component's description
getExecutor() - Method in interface org.mule.extension.introspection.Operation
Provides a OperationExecutor for this operation.
getExecutorFactory() - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
 
getExtensions() - Method in interface org.mule.extension.ExtensionManager
Returns a Set listing all the discovered Extensions.
getExtensionsCapableOf(Class<C>) - Method in interface org.mule.extension.ExtensionManager
Returns a Set with the Extensions that have the given capability
getFilePath() - Method in interface org.mule.extension.resources.GeneratedResource
The path in which the file will be found after being generated.
getGenericTypes() - Method in class org.mule.extension.introspection.DataType
An array of nested DataTypes which represent the parametrized types for the type returned by DataType.getRawType()
getInstantiator() - Method in interface org.mule.extension.introspection.Configuration
Returns the ConfigurationInstantiator for this instance
getName() - Method in class org.mule.extension.introspection.DataType
Returns the type's name
getName() - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDeclaration
 
getName() - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
 
getName() - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
 
getName() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
getName() - Method in interface org.mule.extension.introspection.Described
Returns the component's name
getName() - Method in interface org.mule.extension.introspection.Extension
A simple name for this extension.
getNamespace() - Method in interface org.mule.extension.introspection.capability.XmlCapability
Namespace of the module
getObjectType() - Method in interface org.mule.extension.introspection.ConfigurationInstantiator
Returns the type of the object to be returned by this instance
getOperation(String) - Method in interface org.mule.extension.introspection.Extension
Returns the Operation that matches the given name.
getOperation() - Method in interface org.mule.extension.runtime.OperationContext
The Operation model for the actual processor being executed
getOperations() - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
 
getOperations() - Method in interface org.mule.extension.introspection.Extension
Returns the Operations available for this extension.
getParameters() - Method in interface org.mule.extension.introspection.Configuration
Returns the Parameters available for this configuration
getParameters() - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDeclaration
 
getParameters() - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
 
getParameters() - Method in interface org.mule.extension.introspection.Operation
Returns the parameters that this operation takes.
getParameterValue(String) - Method in interface org.mule.extension.runtime.OperationContext
Returns the value associated to a parameter of name parameterName
getQualifier(Class<?>) - Static method in class org.mule.extension.introspection.DataQualifierFactory
Returns a DataQualifier that corresponds to the given Class
getQualifier() - Method in class org.mule.extension.introspection.DataType
A qualifier for the represented type
getRawType() - Method in class org.mule.extension.introspection.DataType
Returns the Class for the type described by this instance
getRootDeclaration() - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
Returns the root DeclarationDescriptor
getRootDeclaration() - Method in class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
 
getRootDeclaration() - Method in interface org.mule.extension.introspection.declaration.fluent.Descriptor
Returns the root element of this declaration
getRootDeclaration() - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
 
getRootDeclaration() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
 
getSchemaLocation() - Method in interface org.mule.extension.introspection.capability.XmlCapability
Location URI for the schema
getSchemaVersion() - Method in interface org.mule.extension.introspection.capability.XmlCapability
The version of the module.
getType() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
getType() - Method in interface org.mule.extension.introspection.Parameter
Returns the type of the parameter
getVersion() - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
 
getVersion() - Method in interface org.mule.extension.introspection.Extension
Returns this extension's version.

H

HasCapabilities<T extends Descriptor> - Interface in org.mule.extension.introspection.declaration.fluent
A contract interface for an object capable of registering capabilities in behalf of a Descriptor
hashCode() - Method in class org.mule.extension.introspection.DataType
Calculates this instance's hash code by considering the DataType.getRawType(), DataType.getQualifier() and the individual hashCode of each element in DataType.getGenericTypes().

I

instantiatedWith(ConfigurationInstantiator) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
Specifies the ConfigurationInstantiator to be used to create instances of objects which are compliant with the declared configuration
isAssignableFrom(DataType) - Method in class org.mule.extension.introspection.DataType
Similar to Class.isAssignableFrom(Class) but considering the DataType.getRawType() of this instance and dataType
isCapableOf(Class<?>) - Method in interface org.mule.extension.introspection.Capable
Tells if this instance is capable of the given capability
isCapableOf(Class<?>) - Method in class org.mule.extension.introspection.declaration.fluent.CapableDeclaration
Tells if this instance is capable of the given capability
isDynamic() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
isDynamic() - Method in interface org.mule.extension.introspection.Parameter
A parameter is considered to be dynamic if it's value can change in runtime depending on contextual circumstances.
isRequired() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
isRequired() - Method in interface org.mule.extension.introspection.Parameter
Whether or not this parameter is required.

N

newInstance() - Method in interface org.mule.extension.introspection.ConfigurationInstantiator
Returns a new instance of an object which is compliant with the model described by the owning Configuration object.
NoSuchConfigurationException - Exception in org.mule.extension.exception
Exception thrown when querying for a specific configuration that is not registered to a given extension.
NoSuchConfigurationException(Extension, String) - Constructor for exception org.mule.extension.exception.NoSuchConfigurationException
 
NoSuchExtensionException - Exception in org.mule.extension.exception
An Exception to signal that an Extension has been referenced but the platform has no knowledge of it.
NoSuchExtensionException() - Constructor for exception org.mule.extension.exception.NoSuchExtensionException
 
NoSuchExtensionException(String) - Constructor for exception org.mule.extension.exception.NoSuchExtensionException
 
NoSuchExtensionException(String, Throwable) - Constructor for exception org.mule.extension.exception.NoSuchExtensionException
 
NoSuchExtensionException(Throwable) - Constructor for exception org.mule.extension.exception.NoSuchExtensionException
 
NoSuchOperationException - Exception in org.mule.extension.exception
Exception thrown when querying for a specific configuration that is not registered to a given extension.
NoSuchOperationException(Extension, String) - Constructor for exception org.mule.extension.exception.NoSuchOperationException
 

O

of(Class<?>) - Static method in class org.mule.extension.introspection.DataType
Returns a new DataType that represents the given type.
of(Class<?>, Class<?>...) - Static method in class org.mule.extension.introspection.DataType
Returns a new DataType that represents the given type with the optional generic types.
of(Class<?>, DataType...) - Static method in class org.mule.extension.introspection.DataType
Returns a new DataType that represents the given class and has the already provided DataTypes as DataType.getGenericTypes()
ofType(Class<?>, Class<?>...) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Specifies the type of the Parameter and its parametrized types
ofType(DataType) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Specifies the type of the Parameter
onBoolean() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.BOOLEAN
onDateTime() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.DATE_TIME
onDecimal() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.DECIMAL
onDouble() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.DOUBLE
onEnum() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.ENUM
onInteger() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.INTEGER
onList() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.LIST
onLong() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.LONG
onMap() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.MAP
onOperation() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.OPERATION
onPojo() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.POJO
onString() - Method in interface org.mule.extension.introspection.DataQualifierVisitor
Invoked when visiting DataQualifier.STRING
Operation - Interface in org.mule.extension.introspection
A definition of an operation in a Extension
OperationContext - Interface in org.mule.extension.runtime
Provides context information about the execution of an operation
OperationDeclaration - Class in org.mule.extension.introspection.declaration.fluent
A declaration object for a Operation.
OperationDescriptor - Class in org.mule.extension.introspection.declaration.fluent
A Descriptor which allows configuring a OperationDeclaration through a fluent API
OperationExecutor - Interface in org.mule.extension.runtime
A facade interface which hides the details of how an operation is actually executed.
OperationExecutorFactory - Interface in org.mule.extension.introspection.declaration.fluent
Creates OperationExecutor instances
optionalParameter(String) - Method in class org.mule.extension.introspection.declaration.fluent.WithParameters
Adds an optional parameter
OptionalParameterDescriptor - Class in org.mule.extension.introspection.declaration.fluent
A specialization of ParameterDescriptor for optional parameters.
org.mule.extension - package org.mule.extension
 
org.mule.extension.exception - package org.mule.extension.exception
 
org.mule.extension.introspection - package org.mule.extension.introspection
 
org.mule.extension.introspection.capability - package org.mule.extension.introspection.capability
 
org.mule.extension.introspection.declaration - package org.mule.extension.introspection.declaration
 
org.mule.extension.introspection.declaration.fluent - package org.mule.extension.introspection.declaration.fluent
 
org.mule.extension.introspection.declaration.spi - package org.mule.extension.introspection.declaration.spi
 
org.mule.extension.resources - package org.mule.extension.resources
 
org.mule.extension.resources.spi - package org.mule.extension.resources.spi
 
org.mule.extension.runtime - package org.mule.extension.runtime
 

P

Parameter - Interface in org.mule.extension.introspection
A parameter of an operation or configuration
ParameterDeclaration - Class in org.mule.extension.introspection.declaration.fluent
A declaration object for a Parameter.
ParameterDescriptor<T extends ParameterDescriptor> - Class in org.mule.extension.introspection.declaration.fluent
A Descriptor which allows configuring a ParameterDeclaration through a fluent API
postProcess(DescribingContext) - Method in interface org.mule.extension.introspection.declaration.spi.DescriberPostProcessor
Optionally applies extra logic into any of the context's attributes

R

registerConfigurationInstance(Extension, String, C) - Method in interface org.mule.extension.runtime.ConfigurationInstanceRegistrationCallback
Registers the given configurationInstance
registerConfigurationInstanceProvider(Extension, String, ConfigurationInstanceProvider<C>) - Method in interface org.mule.extension.ExtensionManager
Registers the configurationInstanceProvider.
registerExtension(Extension) - Method in interface org.mule.extension.ExtensionManager
Registers the given Extension If a matching Extension is already registered, then this manager will apply whatever policy finds more convenient to decide if the existing registration is kept or replaced.
requiredParameter(String) - Method in class org.mule.extension.introspection.declaration.fluent.WithParameters
Adds a required parameter
RESERVED_NAMES - Static variable in interface org.mule.extension.introspection.Parameter
 
ResourcesGenerator - Interface in org.mule.extension.resources
A component capable of dinamically generating resources to back up a set of Extensions.

S

setConfigurationInstantiator(ConfigurationInstantiator) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDeclaration
 
setDefaultValue(Object) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDeclaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.fluent.Declaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
setDynamic(boolean) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
setExecutorFactory(OperationExecutorFactory) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDeclaration
 
setName(String) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
setRequired(boolean) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 
setType(DataType) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDeclaration
 

V

valueOf(String) - Static method in enum org.mule.extension.introspection.DataQualifier
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.mule.extension.introspection.DataQualifier
Returns an array containing the constants of this enum type, in the order they are declared.

W

whichIsDynamic() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Specifies that the declared Parameter is to be dynamic (which is the default anyways...)
whichIsStatic() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Specifies that the declared Parameter is not to be dynamic
with() - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
 
with() - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
 
with() - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
 
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
Adds the given capability to the declaring configuration
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
Adds the given capability to this declaration
withCapability(Object) - Method in interface org.mule.extension.introspection.declaration.fluent.HasCapabilities
Adds the given capability
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
Adds the given capability to the declaring operation
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Adds the given capability to the declaring parameter
withConfig(String) - Method in class org.mule.extension.introspection.declaration.fluent.ConfigurationDescriptor
Adds another config of the given name
withConfig(String) - Method in class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
Adds a config of the given name
withConfig(String) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
Adds another configuration to the root DeclarationDescriptor
withConfig(String) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Adds another config of the given name
withConfig(String) - Method in class org.mule.extension.introspection.declaration.fluent.WithParameters
Adds another config of the given name
withOperation(String) - Method in class org.mule.extension.introspection.declaration.fluent.DeclarationDescriptor
Adds an operation of the given name
withOperation(String) - Method in class org.mule.extension.introspection.declaration.fluent.OperationDescriptor
Adds another operation to the root DeclarationDescriptor
withOperation(String) - Method in class org.mule.extension.introspection.declaration.fluent.ParameterDescriptor
Adds another operation of the given name
withOperation(String) - Method in class org.mule.extension.introspection.declaration.fluent.WithParameters
Adds another operation of the given name
WithParameters - Class in org.mule.extension.introspection.declaration.fluent
A bridge which allows adding ParameterDeclaration to a WithParameters.owner that belongs to a DeclarationDescriptor
WithParameters(HasParameters, DeclarationDescriptor) - Constructor for class org.mule.extension.introspection.declaration.fluent.WithParameters
 

X

XmlCapability - Interface in org.mule.extension.introspection.capability
Represents an extension's capability to be mapped and usable from a Mule XML config
A C D E G H I N O P R S V W X 

Copyright © 2015 MuleSoft, Inc.. All rights reserved.