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.CapableDeclaration
Adds a capability to this declaration
addConfig(ConfigurationDeclaration) - Method in class org.mule.extension.introspection.declaration.Declaration
addOperation(OperationDeclaration) - Method in class org.mule.extension.introspection.declaration.Declaration
addParameter(ParameterDeclaration) - Method in class org.mule.extension.introspection.declaration.ConfigurationConstruct
Adds the given parameter to the declaring configuration
addParameter(ParameterDeclaration) - Method in class org.mule.extension.introspection.declaration.OperationConstruct
addParameter(ParameterDeclaration) - Method in class org.mule.extension.introspection.declaration.OperationDeclaration

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
Base class for a declaration object on which capabilities can be added
CapableDeclaration() - Constructor for class org.mule.extension.introspection.declaration.CapableDeclaration
 
Configuration - Interface in org.mule.extension.introspection
A named configuration for an extension

ConfigurationConstruct - Class in org.mule.extension.introspection.declaration
A Construct which allows configuring a ConfigurationDeclaration through a fluent API
ConfigurationDeclaration - Class in org.mule.extension.introspection.declaration
A declaration object for a Configuration.
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.
Construct - Interface in org.mule.extension.introspection.declaration
A construct is a flat, intermediate representation of an extension model.
contribute(Extension, ResourcesGenerator) - Method in interface org.mule.extension.resources.spi.GenerableResourceContributor
Contributes if necessary to the generation of the given extension's resources.
createFrom(Construct) - Method in interface org.mule.extension.introspection.ExtensionFactory
Creates a Extension from the given Construct
createFrom(Construct, DescribingContext) - Method in interface org.mule.extension.introspection.ExtensionFactory
Creates a Extension from the given Construct using a specifing describingContext

D

DataQualifier - Enum in org.mule.extension.introspection
Provides a high level definition about the "family" 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
A declaration object for a Extension.
DeclarationConstruct - Class in org.mule.extension.introspection.declaration
A Construct which allows configuring a Declaration through a fluent API
DeclarationConstruct(String, String) - Constructor for class org.mule.extension.introspection.declaration.DeclarationConstruct
Constructor for this construct
defaultingTo(Object) - Method in class org.mule.extension.introspection.declaration.OptionalParameterConstruct
Adds a default value for the parameter
describe() - Method in interface org.mule.extension.introspection.Describer
Describes the extension as a Construct
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.ConfigurationConstruct
Adds a description to the configuration
describedAs(String) - Method in class org.mule.extension.introspection.declaration.DeclarationConstruct
Adds a description
describedAs(String) - Method in class org.mule.extension.introspection.declaration.OperationConstruct
Adds a description
describedAs(String) - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
Adds a description
Describer - Interface in org.mule.extension.introspection
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.spi
A post processor that allows doing extra task before a Describer finishes describing a Construct

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
Used for propagating state across all the components that may take part on the activation 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.

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 GenerableResources that were generated through ResourcesGenerator.getOrCreateResource(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.OperationConstruct
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 Construct 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

GenerableResource - Interface in org.mule.extension.resources
A resource that supports a Extension and which can be generated by the runtime
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.

generateFor(Extension) - Method in interface org.mule.extension.resources.ResourcesGenerator
Generates resources for the given extension.
get(OperationContext, ConfigurationInstanceRegistrationCallback) - 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 capability type.
getCapabilities() - Method in class org.mule.extension.introspection.declaration.CapableDeclaration
 
getCapabilities(Class<C>) - Method in class org.mule.extension.introspection.declaration.CapableDeclaration
Returns a Set with the capabilities which are an instance of the given capability type.
getConfiguration(String) - Method in interface org.mule.extension.introspection.Extension
Returns the Configuration that matches the given name.
getConfiguration() - Method in interface org.mule.extension.runtime.ConfigurationInstanceProvider
The Configuration model for which this provider creates instances that realize it.
getConfigurationInstantiator() - Method in class org.mule.extension.introspection.declaration.ConfigurationDeclaration
 
getConfigurations() - Method in class org.mule.extension.introspection.declaration.Declaration
 
getConfigurations() - Method in interface org.mule.extension.introspection.Extension
Returns the Configurations available for this extension.
getContentBuilder() - Method in interface org.mule.extension.resources.GenerableResource
The builder which GenerableResourceContributors will use to contribute their part
getCustomParameters() - Method in interface org.mule.extension.introspection.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.DeclarationConstruct
 
getDeclaration() - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
Gets the declaration object for this construct
getDeclarationConstruct() - Method in interface org.mule.extension.introspection.DescribingContext
The DeclarationConstruct in which the extension is being described into
getDefaultValue() - Method in class org.mule.extension.introspection.declaration.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.ConfigurationDeclaration
 
getDescription() - Method in class org.mule.extension.introspection.declaration.Declaration
 
getDescription() - Method in class org.mule.extension.introspection.declaration.OperationDeclaration
 
getDescription() - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
getDescription() - Method in interface org.mule.extension.introspection.Described
Returns the component's description
getExecutor(C) - Method in interface org.mule.extension.introspection.declaration.OperationExecutorFactory
Provides a OperationExecutor that will act on the given configurationInstance
getExecutor(T) - Method in interface org.mule.extension.introspection.Operation
Provides a OperationExecutor for this operation.
getExecutorFactory() - Method in class org.mule.extension.introspection.declaration.OperationDeclaration
 
getExtensions() - Method in interface org.mule.extension.ExtensionManager
Returns a Set listing all the available 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.GenerableResource
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.ConfigurationDeclaration
 
getName() - Method in class org.mule.extension.introspection.declaration.Declaration
 
getName() - Method in class org.mule.extension.introspection.declaration.OperationDeclaration
 
getName() - Method in class org.mule.extension.introspection.declaration.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.
getName() - Method in interface org.mule.extension.runtime.ConfigurationInstanceProvider
The name under which this provider was registered
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
getOperationExecutor(String, OperationContext) - Method in interface org.mule.extension.ExtensionManager
Provisions a OperationExecutor to execute the Operation that is referenced by operationContext.
getOperationExecutor(OperationContext) - Method in interface org.mule.extension.ExtensionManager
Provisions a OperationExecutor to execute the Operation that is referenced by operationContext.
getOperations() - Method in class org.mule.extension.introspection.declaration.Declaration
 
getOperations() - Method in interface org.mule.extension.introspection.Extension
Returns the Operations available for this extension.
getOrCreateResource(String) - Method in interface org.mule.extension.resources.ResourcesGenerator
Returns a GenerableResource that will point to the given filepath.
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.ConfigurationDeclaration
 
getParameters() - Method in class org.mule.extension.introspection.declaration.OperationDeclaration
 
getParameters() - Method in interface org.mule.extension.introspection.Operation
Returns the parameters that this operation takes.
getParameters() - Method in interface org.mule.extension.runtime.OperationContext
Returns a Map in which the keys are the operation's Parameters and the values are the actual values to which those parameters are mapped for this particular execution.
getParameterValue(Parameter) - Method in interface org.mule.extension.runtime.OperationContext
Returns the value associated to the given parameter
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
getRootConstruct() - Method in class org.mule.extension.introspection.declaration.ConfigurationConstruct
Returns the owning DeclarationConstruct
getRootConstruct() - Method in interface org.mule.extension.introspection.declaration.Construct
Returns the root element of this construct
getRootConstruct() - Method in class org.mule.extension.introspection.declaration.DeclarationConstruct
 
getRootConstruct() - Method in class org.mule.extension.introspection.declaration.OperationConstruct
 
getRootConstruct() - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
 
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.
getSuperclass() - Method in class org.mule.extension.introspection.DataType
 
getType() - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
getType() - Method in interface org.mule.extension.introspection.Parameter
Returns the type of the operation
getVersion() - Method in class org.mule.extension.introspection.declaration.Declaration
 
getVersion() - Method in interface org.mule.extension.introspection.Extension
Returns this extension's version.

H

HasCapabilities<T extends Construct> - Interface in org.mule.extension.introspection.declaration
A contract interface for an object capable of registering capabilities in behalf of a Construct
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.ConfigurationConstruct
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
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.CapableDeclaration
Tells if this instance is capable of the given capability
isDynamic() - Method in class org.mule.extension.introspection.declaration.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.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
 
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.ParameterConstruct
Specifies the type of the Parameter and its parametrized types
ofType(DataType) - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
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
OperationConstruct - Class in org.mule.extension.introspection.declaration
A Construct which allows configuring a OperationDeclaration through a fluent API
OperationContext - Interface in org.mule.extension.runtime
Provides context information about the execution of an operation
OperationDeclaration - Class in org.mule.extension.introspection.declaration
A declaration object for a Operation.
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
A factory object for creating OperationExecutor instances
optionalParameter(String) - Method in class org.mule.extension.introspection.declaration.WithParameters
Adds an optional parameter
OptionalParameterConstruct - Class in org.mule.extension.introspection.declaration
A specialization of ParameterConstruct 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.spi - package org.mule.extension.introspection.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
ParameterConstruct<T extends ParameterConstruct> - Class in org.mule.extension.introspection.declaration
A Construct which allows configuring a ParameterDeclaration through a fluent API
ParameterDeclaration - Class in org.mule.extension.introspection.declaration
A declaration object for a Parameter.
postProcess(DescribingContext) - Method in interface org.mule.extension.introspection.spi.DescriberPostProcessor
Optionally applies extra logic into any of the context's attributes

R

registerConfigurationInstanceProvider(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.
registerNewConfigurationInstance(ConfigurationInstanceProvider<C>, C) - Method in interface org.mule.extension.runtime.ConfigurationInstanceRegistrationCallback
Notifies the creations of configurationInstance by the given configurationInstanceProvider
requiredParameter(String) - Method in class org.mule.extension.introspection.declaration.WithParameters
Adds a required 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.ConfigurationDeclaration
 
setDefaultValue(Object) - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.ConfigurationDeclaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.Declaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.OperationDeclaration
 
setDescription(String) - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
setDynamic(boolean) - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
setExecutorFactory(OperationExecutorFactory) - Method in class org.mule.extension.introspection.declaration.OperationDeclaration
 
setName(String) - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
setRequired(boolean) - Method in class org.mule.extension.introspection.declaration.ParameterDeclaration
 
setType(DataType) - Method in class org.mule.extension.introspection.declaration.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.ParameterConstruct
Specifies that the declared Parameter is to be dynamic (which is the default anyways...)
whichIsNotDynamic() - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
Specifies that the declared Parameter is not to be dynamic
with() - Method in class org.mule.extension.introspection.declaration.ConfigurationConstruct
 
with() - Method in class org.mule.extension.introspection.declaration.OperationConstruct
 
with() - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
 
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.ConfigurationConstruct
Adds the given capability to the declaring configuration
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.DeclarationConstruct
Adds the given capability to this declaration
withCapability(Object) - Method in interface org.mule.extension.introspection.declaration.HasCapabilities
Adds the given capability
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.OperationConstruct
Adds the given capability to the declaring operation
withCapability(Object) - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
Adds the given capability to the declaring parameter
withConfig(String) - Method in class org.mule.extension.introspection.declaration.ConfigurationConstruct
Adds another config of the given name
withConfig(String) - Method in class org.mule.extension.introspection.declaration.DeclarationConstruct
Adds a config of the given name
withConfig(String) - Method in class org.mule.extension.introspection.declaration.OperationConstruct
Adds another configuration to the root DeclarationConstruct
withConfig(String) - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
Adds another config of the given name
withConfig(String) - Method in class org.mule.extension.introspection.declaration.WithParameters
Adds another config of the given name
withOperation(String) - Method in class org.mule.extension.introspection.declaration.DeclarationConstruct
Adds an operation of the given name
withOperation(String) - Method in class org.mule.extension.introspection.declaration.OperationConstruct
Adds another operation to the root DeclarationConstruct
withOperation(String) - Method in class org.mule.extension.introspection.declaration.ParameterConstruct
Adds another operation of the given name
withOperation(String) - Method in class org.mule.extension.introspection.declaration.WithParameters
Adds another operation of the given name
WithParameters - Class in org.mule.extension.introspection.declaration
A bridge which allows adding ParameterDeclaration to a WithParameters.owner that belongs to a DeclarationConstruct
WithParameters(HasParameters, DeclarationConstruct) - Constructor for class org.mule.extension.introspection.declaration.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.