Uses of Interface
org.mule.umo.UMOFilter

Packages that use UMOFilter
org.mule.config.builders Various configuration builders for configuring a Mule Instance. 
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.endpoint Implemtation of Mule endpoint uris. 
org.mule.providers Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.providers.email.filters   
org.mule.providers.file Provides file transport in the form of a directory listeners and file dispatchers. 
org.mule.providers.file.filters Filename filters used to filter on a listening directory. 
org.mule.providers.http Provides http transport including proxy support. 
org.mule.providers.http.filters   
org.mule.providers.jms.filters   
org.mule.providers.xmpp   
org.mule.providers.xmpp.filters   
org.mule.routing.filters Filters are often used by routers to determine if the event should be accepted by the router. 
org.mule.routing.filters.logic Filters that allow other filters to be combined. 
org.mule.routing.filters.xml Filters that apply specifically to xml using xml querying mechanisms. 
org.mule.routing.inbound Inbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.routing.outbound Outbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.transaction.constraints Contains the transaction contraint filter used to control how and when transactions are committed. 
org.mule.umo.endpoint Endpoint interfaces. 
 

Uses of UMOFilter in org.mule.config.builders
 

Methods in org.mule.config.builders that return UMOFilter
 UMOFilter EndpointReference.getFilter()
           
 

Methods in org.mule.config.builders with parameters of type UMOFilter
 void EndpointReference.setFilter(UMOFilter filter)
           
 

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

Methods in org.mule.extras.spring.events that return UMOFilter
protected  UMOFilter MuleEventMulticaster.createFilter(java.lang.String pattern)
           
 

Uses of UMOFilter in org.mule.impl
 

Fields in org.mule.impl declared as UMOFilter
protected  UMOFilter ImmutableMuleEndpoint.filter
          event filter for this endpoint
 

Methods in org.mule.impl that return UMOFilter
 UMOFilter ImmutableMuleEndpoint.getFilter()
           
 

Uses of UMOFilter in org.mule.impl.endpoint
 

Methods in org.mule.impl.endpoint with parameters of type UMOFilter
 void MuleEndpoint.setFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.providers
 

Methods in org.mule.providers with parameters of type UMOFilter
protected  boolean AbstractMessageReceiver.allowFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.providers.email.filters
 

Classes in org.mule.providers.email.filters that implement UMOFilter
 class AbstractMailFilter
          AbstractMailFilter is a base class for all javax.mail.Message filters.
 class MailSubjectRegExFilter
          MailSubjectRegExFilter applies a regular expression to a Mail Message subject.
 

Uses of UMOFilter in org.mule.providers.file
 

Methods in org.mule.providers.file with parameters of type UMOFilter
protected  boolean FileMessageReceiver.allowFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.providers.file.filters
 

Classes in org.mule.providers.file.filters that implement UMOFilter
 class FilenameWildcardFilter
          FilenameWildcardFilter Filters the incoming files from the read From directory, based on file patterns
 

Uses of UMOFilter in org.mule.providers.http
 

Methods in org.mule.providers.http with parameters of type UMOFilter
protected  boolean HttpMessageReceiver.allowFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.providers.http.filters
 

Classes in org.mule.providers.http.filters that implement UMOFilter
 class HttpRequestWildcardFilter
          HttpRequestWildcardFilter filters out wildcard Url expressions.
 

Uses of UMOFilter in org.mule.providers.jms.filters
 

Classes in org.mule.providers.jms.filters that implement UMOFilter
 class JmsSelectorFilter
          JmsSelectorFilter is a wrapper for a Jms Selector.
 

Uses of UMOFilter in org.mule.providers.xmpp
 

Methods in org.mule.providers.xmpp with parameters of type UMOFilter
protected  boolean XmppMessageReceiver.allowFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.providers.xmpp.filters
 

Classes in org.mule.providers.xmpp.filters that implement UMOFilter
 class AbstractXmppFilter
          AbstractXmppFilter is a filter adapter so that Smack Filters can be configured as Mule filters
 class XmppAndFilter
          XmppAndFilter an Xmpp AND filter
 class XmppFromContainsFilter
          XmppFromContainsFilter is an Xmpp FromContainsfilter adapter.
 class XmppMessageTypeFilter
          XmppMessageTypeFilter is an Xmpp MessageTypeFilter adapter.
 class XmppNotFilter
          XmppAndFilter an Xmpp AND filter
 class XmppOrFilter
          XmppAndFilter an Xmpp OR filter
 class XmppPacketIDFilter
          XmppPacketIDFilter is an Xmpp PacketIDFilter adapter.
 class XmppPacketTypeFilter
          XmppPacketTypeFilter is an Xmpp PacketTypeFilter adapter.
 class XmppThreadFilter
          XmppThreadFilter is an Xmpp ThreadFilter adapter.
 class XmppToContainsFilter
          XmppToContainsFilter is an Xmpp ToContainsfilter adapter.
 

Uses of UMOFilter in org.mule.routing.filters
 

Classes in org.mule.routing.filters that implement UMOFilter
 class EqualsFilter
          EqualsFilter is a filer for comparing two objects using the equals() method.
 class MessageFilter
          MessageFilter allows filtering on the whole message not just the payload
 class MessagePropertyFilter
          MessagePropertyFilter can be used to filter against properties on an event.
 class PayloadTypeFilter
          PayloadTypeFilter filters based on the type of the object received.
 class RegExFilter
          RegExFilter is used to match a rgular expression against a string argument.
 class UMOEventFilter
          UMOEventFilter is a filter for determining if the object is a UMOEvent.
 class WildcardFilter
          WildcardFilter is used to match wildcard string.
 

Uses of UMOFilter in org.mule.routing.filters.logic
 

Classes in org.mule.routing.filters.logic that implement UMOFilter
 class AndFilter
          AndFilter accepts only if the leftFilter and rightFilter filter accept
 class NotFilter
          NotFilter accepts if the filter does not accept
 class OrFilter
          OrFilter accepts if the leftFilter or rightFilter filter accept
 

Methods in org.mule.routing.filters.logic that return UMOFilter
 UMOFilter OrFilter.getLeftFilter()
           
 UMOFilter OrFilter.getRightFilter()
           
 UMOFilter NotFilter.getFilter()
           
 UMOFilter AndFilter.getLeftFilter()
           
 UMOFilter AndFilter.getRightFilter()
           
 

Methods in org.mule.routing.filters.logic with parameters of type UMOFilter
 void OrFilter.setLeftFilter(UMOFilter leftFilter)
           
 void OrFilter.setRightFilter(UMOFilter rightFilter)
           
 void NotFilter.setFilter(UMOFilter filter)
           
 void AndFilter.setLeftFilter(UMOFilter leftFilter)
           
 void AndFilter.setRightFilter(UMOFilter rightFilter)
           
 

Constructors in org.mule.routing.filters.logic with parameters of type UMOFilter
OrFilter(UMOFilter leftFilter, UMOFilter rightFilder)
           
NotFilter(UMOFilter filter)
           
AndFilter(UMOFilter left, UMOFilter right)
           
 

Uses of UMOFilter in org.mule.routing.filters.xml
 

Classes in org.mule.routing.filters.xml that implement UMOFilter
 class JXPathFilter
          JXPathFilter evaluates an XPath expression against an Xml document or bean and returns true if the result is expected.
 

Uses of UMOFilter in org.mule.routing.inbound
 

Methods in org.mule.routing.inbound that return UMOFilter
 UMOFilter SelectiveConsumer.getFilter()
           
 

Methods in org.mule.routing.inbound with parameters of type UMOFilter
 void SelectiveConsumer.setFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.routing.outbound
 

Methods in org.mule.routing.outbound that return UMOFilter
 UMOFilter FilteringOutboundRouter.getFilter()
           
 

Methods in org.mule.routing.outbound with parameters of type UMOFilter
 void OutboundPassThroughRouter.setFilter(UMOFilter filter)
           
 void FilteringOutboundRouter.setFilter(UMOFilter filter)
           
 

Uses of UMOFilter in org.mule.transaction.constraints
 

Classes in org.mule.transaction.constraints that implement UMOFilter
 class BatchConstraint
          BatchConstraint is a filter that counts on every execution and returns true when the batch size value equals the execution count.
 class ConstraintFilter
          ConstraintFilter TODO
 class ManualConstraint
          ManualConstraint always returns false meaning that the transaction should be commited manually.
 

Uses of UMOFilter in org.mule.umo.endpoint
 

Methods in org.mule.umo.endpoint that return UMOFilter
 UMOFilter UMOImmutableEndpoint.getFilter()
          The filter to apply to incoming messages.
 

Methods in org.mule.umo.endpoint with parameters of type UMOFilter
 void UMOEndpoint.setFilter(UMOFilter filter)
          The filter to apply to incoming messages
 



Copyright © 2003-2005 SymphonySoft Limited. All Rights Reserved.