Uses of Interface
org.mule.umo.UMODescriptor

Packages that use UMODescriptor
org.mule.components.builder   
org.mule.components.simple A collection of simple mule components that can be useful to simplify configuration while testing. 
org.mule.config.builders Various configuration builders for configuring a Mule Instance. 
org.mule.config.pool A Mule pooling implementation using Jakarta commons-pool. 
org.mule.impl The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.impl.internal.admin Admin components and Agents used to control and Monitor Mule 
org.mule.impl.internal.notifications Internal server notificationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationication types fired via the MuleManager. 
org.mule.impl.model   
org.mule.impl.model.direct   
org.mule.impl.model.pipeline   
org.mule.impl.model.seda   
org.mule.impl.model.seda.optimised   
org.mule.model UMOModel supporting configuration classes such as UMOEntryPointResolver. 
org.mule.umo The Universal Message Object(tm) API provides a way for components to interact without needing to know about the protocol or delivery mechanisms of information passed between them 
org.mule.umo.lifecycle Lifecycle interfaces for all UMOcomponents. 
org.mule.umo.model Contains the interfaces for the Model and supporting objects such as the CompoenntResolver, EntryPointResolver, etc. 
 

Uses of UMODescriptor in org.mule.components.builder
 

Fields in org.mule.components.builder declared as UMODescriptor
protected  UMODescriptor AbstractMessageBuilder.descriptor
           
 

Methods in org.mule.components.builder with parameters of type UMODescriptor
 void AbstractMessageBuilder.setDescriptor(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.components.simple
 

Methods in org.mule.components.simple with parameters of type UMODescriptor
 void BridgeComponent.setDescriptor(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.config.builders
 

Methods in org.mule.config.builders that return UMODescriptor
 UMODescriptor QuickConfigurationBuilder.registerComponentInstance(Object component, String name, UMOEndpointURI listenerEndpointUri)
          Registers a java object as a Umo pcomponent that listens for events on the given url.
 UMODescriptor QuickConfigurationBuilder.registerComponentInstance(Object component, String name, UMOEndpointURI listenerEndpointUri, UMOEndpointURI sendEndpointUri)
          Registers a java object as a Umo pcomponent that listens for and sends events on the given urls.
 UMODescriptor QuickConfigurationBuilder.createDescriptor(String implementation, String name, String inboundEndpointUri, String outboundEndpointUri, Map properties)
          Creates a Mule Descriptor that can be further maniputalted by the calling class before registering it with the UMOModel
 UMODescriptor QuickConfigurationBuilder.createDescriptor(String implementation, String name, UMOEndpointURI inboundEndpointUri, UMOEndpointURI outboundEndpointUri, Map properties)
          Creates a Mule Descriptor that can be further maniputalted by the calling class before registering it with the UMOModel
 UMODescriptor QuickConfigurationBuilder.createDescriptor(String implementation, String name, UMOEndpoint inboundEndpoint, UMOEndpoint outboundEndpoint, Map properties)
          Creates a Mule Descriptor that can be further maniputalted by the calling class before registering it with the UMOModel
 

Methods in org.mule.config.builders with parameters of type UMODescriptor
 UMOComponent QuickConfigurationBuilder.registerComponent(UMODescriptor descriptor)
          Registers a user configured MuleDescriptor of a components to the server.
 

Uses of UMODescriptor in org.mule.config.pool
 

Methods in org.mule.config.pool with parameters of type UMODescriptor
 ObjectPool CommonsPoolFactory.createPool(UMODescriptor descriptor, ObjectFactory factory)
           
 ObjectPool CommonsPoolFactory.createPool(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.impl
 

Classes in org.mule.impl that implement UMODescriptor
 class MuleDescriptor
          MuleDescriptor describes all the properties for a Mule UMO.
 

Methods in org.mule.impl that return UMODescriptor
 UMODescriptor DefaultLifecycleAdapter.getDescriptor()
           
 UMODescriptor MuleEventContext.getComponentDescriptor()
           
 

Methods in org.mule.impl with parameters of type UMODescriptor
protected  void DefaultLifecycleAdapter.initialise(Object component, UMODescriptor descriptor, UMOEntryPointResolver epDiscovery)
           
 void UMODescriptorAware.setDescriptor(UMODescriptor descriptor)
           
 UMOLifecycleAdapter DefaultLifecycleAdapterFactory.create(Object component, UMODescriptor descriptor, UMOEntryPointResolver resolver)
           
 

Constructors in org.mule.impl with parameters of type UMODescriptor
DefaultLifecycleAdapter(Object component, UMODescriptor descriptor)
           
DefaultLifecycleAdapter(Object component, UMODescriptor descriptor, UMOEntryPointResolver epResolver)
           
 

Uses of UMODescriptor in org.mule.impl.internal.admin
 

Methods in org.mule.impl.internal.admin that return UMODescriptor
static UMODescriptor MuleManagerComponent.getDescriptor(UMOConnector connector, UMOEndpointURI endpointUri, WireFormat wireFormat)
           
 

Uses of UMODescriptor in org.mule.impl.internal.notifications
 

Constructors in org.mule.impl.internal.notifications with parameters of type UMODescriptor
ComponentNotification(UMODescriptor message, int action)
           
 

Uses of UMODescriptor in org.mule.impl.model
 

Methods in org.mule.impl.model that return UMODescriptor
 UMODescriptor AbstractComponent.getDescriptor()
           
 UMODescriptor AbstractModel.getDescriptor(String name)
           
 

Methods in org.mule.impl.model with parameters of type UMODescriptor
 UMOComponent AbstractModel.registerComponent(UMODescriptor descriptor)
           
 void AbstractModel.unregisterComponent(UMODescriptor descriptor)
           
protected abstract  UMOComponent AbstractModel.createComponent(UMODescriptor descriptor)
           
static Object ComponentFactory.createComponent(UMODescriptor descriptor)
          Creates a component based on its descriptor.
 

Uses of UMODescriptor in org.mule.impl.model.direct
 

Methods in org.mule.impl.model.direct with parameters of type UMODescriptor
protected  UMOComponent DirectModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.impl.model.pipeline
 

Methods in org.mule.impl.model.pipeline with parameters of type UMODescriptor
protected  UMOComponent PipelineModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.impl.model.seda
 

Methods in org.mule.impl.model.seda with parameters of type UMODescriptor
protected  UMOComponent SedaModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.impl.model.seda.optimised
 

Methods in org.mule.impl.model.seda.optimised with parameters of type UMODescriptor
protected  UMOComponent OptimisedSedaModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.model
 

Methods in org.mule.model with parameters of type UMODescriptor
 UMOEntryPoint DynamicEntryPointResolver.resolveEntryPoint(UMODescriptor descriptor)
           
 UMOEntryPoint CallableEntryPointResolver.resolveEntryPoint(UMODescriptor componentDescriptor)
           
 

Uses of UMODescriptor in org.mule.umo
 

Methods in org.mule.umo that return UMODescriptor
 UMODescriptor UMOEventContext.getComponentDescriptor()
           
 UMODescriptor UMOComponent.getDescriptor()
           
 

Uses of UMODescriptor in org.mule.umo.lifecycle
 

Methods in org.mule.umo.lifecycle that return UMODescriptor
 UMODescriptor UMOLifecycleAdapter.getDescriptor()
           
 

Methods in org.mule.umo.lifecycle with parameters of type UMODescriptor
 UMOLifecycleAdapter UMOLifecycleAdapterFactory.create(Object component, UMODescriptor descriptor, UMOEntryPointResolver resolver)
           
 

Uses of UMODescriptor in org.mule.umo.model
 

Methods in org.mule.umo.model that return UMODescriptor
 UMODescriptor UMOModel.getDescriptor(String name)
          Returns a descriptor for the given component name
 

Methods in org.mule.umo.model with parameters of type UMODescriptor
 UMOComponent UMOModel.registerComponent(UMODescriptor descriptor)
          Registers a UMODescriptor with the MuleManager.
 void UMOModel.unregisterComponent(UMODescriptor descriptor)
          Unregisters a component From the model
 UMOComponent UMOComponentFactory.create(UMODescriptor descriptor)
           
 ObjectPool UMOPoolFactory.createPool(UMODescriptor descriptor, ObjectFactory factory)
           
 ObjectPool UMOPoolFactory.createPool(UMODescriptor descriptor)
           
 UMOEntryPoint UMOEntryPointResolver.resolveEntryPoint(UMODescriptor componentDescriptor)
           
 



Copyright © 2003-2006 MuleSource Inc.. All Rights Reserved.