Uses of Interface
org.mule.umo.UMODescriptor

Packages that use UMODescriptor
org.mule.components.builder   
org.mule.components.script Base classes for script based components such as BeanShell or Groovy. 
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.examples.loanbroker.bank   
org.mule.extras.client Simple interface for Mule clients to send and receive events from local or remote Mule Servers. 
org.mule.extras.spring.events A Spring EventMulticaster that allows any Spring bean to send and receive mule events through the ApplicationContext and event listeners. 
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 notification types fired via the MuleManager. 
org.mule.impl.model   
org.mule.impl.model.direct   
org.mule.impl.model.pipeline   
org.mule.impl.model.resolvers   
org.mule.impl.model.seda   
org.mule.impl.model.seda.optimised   
org.mule.impl.model.streaming   
org.mule.management.mbeans Jmx Management beans for mule components, the model and the Mule server. 
org.mule.providers.soap   
org.mule.providers.soap.xfire   
org.mule.ra A Resource Adapter implementation that allows a Mule instance to be deployed to a J2ee application server and exposes Mule services via the JCA connector architecture. 
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
org.mule.tck.model Test suite for testing Model releated extensions. 
org.mule.tck.testmodels.mule   
org.mule.tools.visualizer.service   
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.script
 

Fields in org.mule.components.script declared as UMODescriptor
protected  UMODescriptor AbstractScriptComponent.descriptor
           
 

Methods in org.mule.components.script with parameters of type UMODescriptor
 void AbstractScriptComponent.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.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, 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
 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.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.
 

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, UMOModel model, ObjectFactory factory, PoolingProfile pp)
           
 ObjectPool CommonsPoolFactory.createPool(UMODescriptor descriptor, UMOModel model, PoolingProfile pp)
           
 

Uses of UMODescriptor in org.mule.examples.loanbroker.bank
 

Methods in org.mule.examples.loanbroker.bank with parameters of type UMODescriptor
 void Bank.setDescriptor(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.extras.client
 

Methods in org.mule.extras.client with parameters of type UMODescriptor
protected  UMOEndpoint MuleClient.getDefaultClientEndpoint(UMODescriptor descriptor, Object payload)
           
 void MuleClient.registerComponent(UMODescriptor descriptor)
          Registers a user configured MuleDescriptor of a components to the server.
 

Uses of UMODescriptor in org.mule.extras.spring.events
 

Fields in org.mule.extras.spring.events declared as UMODescriptor
protected  UMODescriptor MuleEventMulticaster.descriptor
          The Mule descriptor that belongs to this component instnace in Mule
 

Methods in org.mule.extras.spring.events that return UMODescriptor
protected  UMODescriptor MuleEventMulticaster.getDefaultDescriptor()
           
 

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 MuleEventContext.getComponentDescriptor()
           
 UMODescriptor DefaultLifecycleAdapter.getDescriptor()
           
 

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

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()
           
static UMODescriptor ModelHelper.getDescriptor(String name)
          Deprecated.  
 UMODescriptor AbstractModel.getDescriptor(String name)
           
 

Methods in org.mule.impl.model with parameters of type UMODescriptor
static Object ComponentFactory.createComponent(UMODescriptor descriptor)
          Creates a component based on its descriptor.
protected abstract  UMOComponent AbstractModel.createComponent(UMODescriptor descriptor)
           
 UMOComponent AbstractModel.registerComponent(UMODescriptor descriptor)
           
static void ModelHelper.registerSystemComponent(UMODescriptor d)
          Deprecated.  
 void AbstractModel.unregisterComponent(UMODescriptor 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.resolvers
 

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

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.impl.model.streaming
 

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

Uses of UMODescriptor in org.mule.management.mbeans
 

Methods in org.mule.management.mbeans that return UMODescriptor
 UMODescriptor ModelServiceMBean.getComponentDescriptor(String name)
           
 UMODescriptor ModelService.getComponentDescriptor(String name)
           
 

Uses of UMODescriptor in org.mule.providers.soap
 

Methods in org.mule.providers.soap with parameters of type UMODescriptor
 void WSProxyService.setDescriptor(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.providers.soap.xfire
 

Methods in org.mule.providers.soap.xfire with parameters of type UMODescriptor
 void XFireServiceComponent.setDescriptor(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.ra
 

Methods in org.mule.ra that return UMODescriptor
 UMODescriptor JcaComponent.getDescriptor()
           
 

Methods in org.mule.ra with parameters of type UMODescriptor
protected  UMOComponent JcaModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMODescriptor in org.mule.tck.functional
 

Methods in org.mule.tck.functional with parameters of type UMODescriptor
 UMOComponent AbstractProviderFunctionalTestCase.initialiseComponent(UMODescriptor descriptor, EventCallback callback)
          Deprecated.  
 

Uses of UMODescriptor in org.mule.tck.model
 

Methods in org.mule.tck.model that return UMODescriptor
 UMODescriptor AbstractEntryPointDiscoveryTestCase.getDescriptorToResolve(String className)
           
 

Uses of UMODescriptor in org.mule.tck.testmodels.mule
 

Methods in org.mule.tck.testmodels.mule with parameters of type UMODescriptor
 UMOLifecycleAdapter TestDefaultLifecycleAdapterFactory.create(Object component, UMODescriptor descriptor, UMOEntryPointResolver resolver)
           
 UMOEntryPoint TestEntryPointResolver.resolveEntryPoint(UMODescriptor componentDescriptor)
           
 

Constructors in org.mule.tck.testmodels.mule with parameters of type UMODescriptor
TestDefaultLifecycleAdapter(Object component, UMODescriptor descriptor)
           
TestDefaultLifecycleAdapter(Object component, UMODescriptor descriptor, UMOEntryPointResolver epResolver)
           
 

Uses of UMODescriptor in org.mule.tools.visualizer.service
 

Fields in org.mule.tools.visualizer.service declared as UMODescriptor
protected  UMODescriptor VisualizerService.descriptor
           
 

Methods in org.mule.tools.visualizer.service with parameters of type UMODescriptor
 void VisualizerService.setDescriptor(UMODescriptor descriptor)
           
 

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 UMOComponentFactory.create(UMODescriptor descriptor)
           
 ObjectPool UMOPoolFactory.createPool(UMODescriptor descriptor, UMOModel model, ObjectFactory factory, PoolingProfile pp)
           
 ObjectPool UMOPoolFactory.createPool(UMODescriptor descriptor, UMOModel model, PoolingProfile pp)
           
 UMOComponent UMOModel.registerComponent(UMODescriptor descriptor)
          Registers a UMODescriptor with the MuleManager.
 UMOEntryPoint UMOEntryPointResolver.resolveEntryPoint(UMODescriptor componentDescriptor)
           
 void UMOModel.unregisterComponent(UMODescriptor descriptor)
          Unregisters a component From the model
 



Copyright © 2003-2008 MuleSource, Inc.. All Rights Reserved.