Uses of Interface
org.mule.umo.UMOFilter

Packages that use UMOFilter
org.mule.components.rest   
org.mule.config.builders Various configuration builders for configuring a Mule Instance. 
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.email.filters   
org.mule.providers.file.filters Filename filters used to filter on a listening directory. 
org.mule.providers.http.filters   
org.mule.providers.jms.filters   
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.umo.endpoint Endpoint interfaces. 
 

Uses of UMOFilter in org.mule.components.rest
 

Methods in org.mule.components.rest that return UMOFilter
 UMOFilter RestServiceWrapper.getErrorFilter()
           
 

Methods in org.mule.components.rest with parameters of type UMOFilter
 void RestServiceWrapper.setErrorFilter(UMOFilter errorFilter)
           
 

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
 UMOEndpoint QuickConfigurationBuilder.createEndpoint(String uri, String name, boolean inbound, UMOFilter filter)
           
 UMOEndpoint QuickConfigurationBuilder.createEndpoint(String uri, String name, boolean inbound, String transformers, UMOFilter filter)
           
 UMOEndpoint QuickConfigurationBuilder.registerEndpoint(String uri, String name, boolean inbound, Map properties, UMOFilter filter)
           
 void EndpointReference.setFilter(UMOFilter filter)
           
 

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.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.filters
 

Classes in org.mule.providers.file.filters that implement UMOFilter
 class FilenameRegexFilter
          FilenameRegexFilter filters incoming files from a directory, based on a regular expression.
 class FilenameWildcardFilter
          FilenameWildcardFilter filters incoming files from a directory, based on file patterns.
 

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 JmsPropertyFilter
           
 class JmsSelectorFilter
          JmsSelectorFilter is a wrapper for a JMS Selector.
 

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 filter for comparing two objects using the equals() method.
 class ExceptionTypeFilter
          A filter that accepts messages that have an exception payload.
 class MessagePropertyFilter
          MessagePropertyFilter can be used to filter against properties on an event.
 class OGNLFilter
           
 class PayloadTypeFilter
          PayloadTypeFilter filters based on the type of the object received.
 class RegExFilter
          RegExFilter is used to match a String argument against a regular expression.
 class WildcardFilter
          WildcardFilter is used to match Strings against wildcards.
 

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 IsXmlFilter
          IsXmlFilter accepts a String or byte[] if its contents are valid (well-formed) XML.
 class JXPathFilter
          JXPathFilter evaluates an XPath expression against a W3C Document, XML string, or Java bean and returns true if the result is as expected.
 class JXPathMessageFilter
          Deprecated. Please use org.mule.routing.filters.xml.JXPathFilter instead.
 

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.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-2008 MuleSource, Inc.. All Rights Reserved.