Uses of Class
org.mule.api.transport.PropertyScope

Packages that use PropertyScope
org.mule The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.message Wire message implementations. 
org.mule.transformer.simple Basic transformer implementations. 
org.mule.transport Contains Abstract classes providing common functionality for all Mule providers. 
 

Uses of PropertyScope in org.mule
 

Methods in org.mule with parameters of type PropertyScope
 void DefaultMuleMessage.addProperties(Map<String,Object> properties, PropertyScope scope)
          Adds a map of properties to be associated with this message
 Object DefaultMuleMessage.getProperty(String name, PropertyScope scope)
          Gets a property from the message with a given scope
 Set<String> DefaultMuleMessage.getPropertyNames(PropertyScope scope)
          Gets all property names in a given scope
 Object DefaultMuleMessage.removeProperty(String key, PropertyScope scope)
          Removes a property on this message from the specified scope only.
 void DefaultMuleMessage.setProperty(String key, Object value, PropertyScope scope)
          Set a property on the message
 

Uses of PropertyScope in org.mule.api.transport
 

Fields in org.mule.api.transport declared as PropertyScope
static PropertyScope[] PropertyScope.ALL_SCOPES
          An array of all scopes defined here
static PropertyScope PropertyScope.APPLICATION
          This provides access to properties in the registry.
static PropertyScope PropertyScope.INBOUND
          This scope holds all inbound headers when a message is received.
static PropertyScope PropertyScope.INVOCATION
          This scope is defined from the point that a Message is created until a service has processed the message.
static PropertyScope PropertyScope.OUTBOUND
          This is the default scope when writing properties to a message.
static PropertyScope PropertyScope.SESSION
          Defines the scope for any properties set on the session.
 

Methods in org.mule.api.transport that return PropertyScope
static PropertyScope PropertyScope.get(String name)
           
 

Methods in org.mule.api.transport with parameters of type PropertyScope
 void MessageAdapter.addProperties(Map<String,Object> properties, PropertyScope scope)
          Adds a map of properties to be associated with this message
 int PropertyScope.ScopeComparator.compare(PropertyScope o, PropertyScope o1)
           
 Object MessageAdapter.getProperty(String name, PropertyScope scope)
          Gets a property from the message with a given scope
 Set<String> MessageAdapter.getPropertyNames(PropertyScope scope)
          Gets all property names in a given scope
 Object MessageAdapter.removeProperty(String key, PropertyScope scope)
          Removes a property on this message from the specified scope only.
 void MessageAdapter.setProperty(String key, Object value, PropertyScope scope)
          Set a property on the message
 

Uses of PropertyScope in org.mule.message
 

Methods in org.mule.message with parameters of type PropertyScope
protected  void DefaultMuleMessageDTO.encodePropertiesForScope(PropertyScope scope, MuleMessage message)
           
 

Uses of PropertyScope in org.mule.transformer.simple
 

Methods in org.mule.transformer.simple that return PropertyScope
 PropertyScope MessagePropertiesTransformer.getScope()
           
 

Methods in org.mule.transformer.simple with parameters of type PropertyScope
 void MessagePropertiesTransformer.setScope(PropertyScope scope)
           
 

Uses of PropertyScope in org.mule.transport
 

Fields in org.mule.transport declared as PropertyScope
protected  PropertyScope MessagePropertiesContext.defaultScope
           
 

Fields in org.mule.transport with type parameters of type PropertyScope
protected  Map<PropertyScope,Map<String,Object>> MessagePropertiesContext.scopedMap
          Map of maps containing the scoped properties, each scope has its own Map.
 

Methods in org.mule.transport that return PropertyScope
 PropertyScope MessagePropertiesContext.getDefaultScope()
           
 

Methods in org.mule.transport with parameters of type PropertyScope
 void AbstractMessageAdapter.addProperties(Map<String,Object> props, PropertyScope scope)
          Adds a map of properties to be associated with this message
protected  void MessagePropertiesContext.checkScopeForWriteAccess(PropertyScope scope)
           
 void MessagePropertiesContext.clearProperties(PropertyScope scope)
           
 Object MessagePropertiesContext.getProperty(String key, PropertyScope scope)
           
 Object AbstractMessageAdapter.getProperty(String name, PropertyScope scope)
          Gets a property from the message with a given scope
 Set<String> MessagePropertiesContext.getPropertyNames(PropertyScope scope)
           
 Set<String> AbstractMessageAdapter.getPropertyNames(PropertyScope scope)
          Gets all property names in a given scope
protected  Map<String,Object> MessagePropertiesContext.getScopedProperties(PropertyScope scope)
           
 Object MessagePropertiesContext.removeProperty(String key, PropertyScope scope)
          Removes a property from the specified property scope.
 Object AbstractMessageAdapter.removeProperty(String key, PropertyScope scope)
          Removes a property on this message from the specified scope only.
 void MessagePropertiesContext.setProperty(String key, Object value, PropertyScope scope)
          Set a property on the message
 void AbstractMessageAdapter.setProperty(String key, Object value, PropertyScope scope)
          Set a property on the message
 



Copyright © 2003-2010 MuleSoft, Inc.. All Rights Reserved.