Uses of Interface
org.mule.umo.model.UMOModel

Packages that use UMOModel
org.mule Defines the main public API of the MuleManager and support classes such as the MuleServer. 
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.extras.spring.config Classes for loading The Mule Server itself from a spring context, which make it easy to embed Mule with a Spring application. 
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.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.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 Provides a suite of abstract test cases that can be used to test you custom Mule extensions. 
org.mule.tck.providers Test suite for testing custom provider implementations. 
org.mule.umo.manager Manager APIs, including the UMOManager, agent and server event interfaces 
org.mule.umo.model Contains the interfaces for the Model and supporting objects such as the CompoenntResolver, EntryPointResolver, etc. 
 

Uses of UMOModel in org.mule
 

Methods in org.mule that return UMOModel
 UMOModel MuleManager.lookupModel(String name)
           
 

Methods in org.mule with parameters of type UMOModel
 void MuleManager.registerModel(UMOModel model)
           
 

Uses of UMOModel in org.mule.config.builders
 

Methods in org.mule.config.builders that return UMOModel
protected  UMOModel QuickConfigurationBuilder.getModel()
           
 

Methods in org.mule.config.builders with parameters of type UMOModel
 void QuickConfigurationBuilder.registerModel(UMOModel model)
           
 

Uses of UMOModel in org.mule.config.pool
 

Fields in org.mule.config.pool declared as UMOModel
protected  UMOModel AbstractProxyFactory.model
           
 

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

Constructors in org.mule.config.pool with parameters of type UMOModel
AbstractProxyFactory(MuleDescriptor descriptor, UMOModel model)
          Creates a pool factory using the descriptor as the basis for creating its objects
CommonsPoolProxyFactory(MuleDescriptor descriptor, UMOModel model)
          Creates a pool factory using the descriptor as the basis for creating its objects
CommonsPoolProxyPool(MuleDescriptor descriptor, UMOModel model, GenericObjectPool.Config config)
           
CommonsPoolProxyPool(MuleDescriptor descriptor, UMOModel model, ObjectFactory factory, PoolingProfile pp)
          Creates a new pool and an Object factory with the UMODescriptor
 

Uses of UMOModel in org.mule.extras.spring.config
 

Methods in org.mule.extras.spring.config with parameters of type UMOModel
 void UMOManagerFactoryBean.setModel(UMOModel model)
          Deprecated.  
 

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

Constructors in org.mule.impl.internal.notifications with parameters of type UMOModel
ModelNotification(UMOModel model, int action)
           
 

Uses of UMOModel in org.mule.impl.model
 

Classes in org.mule.impl.model that implement UMOModel
 class AbstractModel
          MuleModel is the default implementation of the UMOModel.
 

Fields in org.mule.impl.model declared as UMOModel
protected  UMOModel AbstractComponent.model
          The model in which this component is registered
 

Methods in org.mule.impl.model that return UMOModel
static UMOModel ModelFactory.createModel(String type)
           
 

Constructors in org.mule.impl.model with parameters of type UMOModel
AbstractComponent(MuleDescriptor descriptor, UMOModel model)
          Default constructor
DefaultMuleProxy(Object component, MuleDescriptor descriptor, UMOModel model)
          Constructs a Proxy using the UMO's AbstractMessageDispatcher and the UMO itself
 

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

Classes in org.mule.impl.model.direct that implement UMOModel
 class DirectModel
           
 

Constructors in org.mule.impl.model.direct with parameters of type UMOModel
DirectComponent(MuleDescriptor descriptor, UMOModel model)
           
 

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

Classes in org.mule.impl.model.pipeline that implement UMOModel
 class PipelineModel
           
 

Constructors in org.mule.impl.model.pipeline with parameters of type UMOModel
PipelineComponent(MuleDescriptor descriptor, UMOModel model)
           
 

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

Classes in org.mule.impl.model.seda that implement UMOModel
 class SedaModel
          A Mule component service model that uses Seda principles to achieve high throughput by queueing events for components and processing them concurrently.
 

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

Classes in org.mule.impl.model.seda.optimised that implement UMOModel
 class OptimisedSedaModel
          Same as SedaModel except that it assumes that components implement the Callable interface and therefore does away with the reflection and introspection on objects.
 

Constructors in org.mule.impl.model.seda.optimised with parameters of type UMOModel
OptimisedProxyFactory(MuleDescriptor descriptor, UMOModel model)
           
 

Uses of UMOModel in org.mule.impl.model.streaming
 

Classes in org.mule.impl.model.streaming that implement UMOModel
 class StreamingModel
          TODO
 

Constructors in org.mule.impl.model.streaming with parameters of type UMOModel
StreamingComponent(MuleDescriptor descriptor, UMOModel model)
           
 

Uses of UMOModel in org.mule.management.mbeans
 

Constructors in org.mule.management.mbeans with parameters of type UMOModel
ModelService(UMOModel model)
           
 

Uses of UMOModel in org.mule.ra
 

Classes in org.mule.ra that implement UMOModel
 class JcaModel
          Creates a model suitable for Jca execution
 

Uses of UMOModel in org.mule.tck
 

Methods in org.mule.tck that return UMOModel
static UMOModel MuleTestUtils.getDefaultModel()
           
static UMOModel AbstractMuleTestCase.getDefaultModel()
           
 

Uses of UMOModel in org.mule.tck.providers
 

Methods in org.mule.tck.providers that return UMOModel
 UMOModel AbstractConnectorTestCase.getModel()
           
 

Uses of UMOModel in org.mule.umo.manager
 

Methods in org.mule.umo.manager that return UMOModel
 UMOModel UMOManager.lookupModel(String name)
          The model used for managing components for this server
 

Methods in org.mule.umo.manager with parameters of type UMOModel
 void UMOManager.registerModel(UMOModel model)
           
 

Uses of UMOModel in org.mule.umo.model
 

Methods in org.mule.umo.model with parameters of type UMOModel
 ObjectPool UMOPoolFactory.createPool(UMODescriptor descriptor, UMOModel model, ObjectFactory factory, PoolingProfile pp)
           
 ObjectPool UMOPoolFactory.createPool(UMODescriptor descriptor, UMOModel model, PoolingProfile pp)
           
 



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