Uses of Interface
org.mule.api.routing.filter.Filter

Packages that use Filter
org.mule.api.endpoint Endpoint interfaces. 
org.mule.endpoint Implemtation of Mule endpoint uris. 
org.mule.example.geomail.routing   
org.mule.impl.expression.parsers   
org.mule.module.atom.routing   
org.mule.module.json.filters Filters for recognising JSON payloads in Mule. 
org.mule.module.ognl.filters   
org.mule.module.rss.routing   
org.mule.module.sxc   
org.mule.module.xml.filters Filters that apply specifically to xml using xml querying mechanisms. 
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.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.transport.email.filters   
org.mule.transport.file.filters Filename filters used to filter on a listening directory. 
org.mule.transport.http.components   
org.mule.transport.http.config   
org.mule.transport.http.filters   
org.mule.transport.jms.filters   
org.mule.transport.xmpp.filters   
 

Uses of Filter in org.mule.api.endpoint
 

Methods in org.mule.api.endpoint that return Filter
 Filter ImmutableEndpoint.getFilter()
          The filter to apply to incoming messages.
 

Methods in org.mule.api.endpoint with parameters of type Filter
 void EndpointBuilder.setFilter(Filter filter)
           
 

Uses of Filter in org.mule.endpoint
 

Fields in org.mule.endpoint declared as Filter
protected  Filter AbstractEndpointBuilder.filter
           
 

Methods in org.mule.endpoint that return Filter
protected  Filter AbstractEndpointBuilder.getDefaultFilter(Connector connector)
           
 Filter DynamicURIInboundEndpoint.getFilter()
           
 Filter AbstractEndpoint.getFilter()
           
 Filter DynamicURIOutboundEndpoint.getFilter()
           
protected  Filter AbstractEndpointBuilder.getFilter(Connector connector)
           
 

Methods in org.mule.endpoint with parameters of type Filter
 void AbstractEndpointBuilder.setFilter(Filter filter)
           
 

Constructors in org.mule.endpoint with parameters of type Filter
AbstractEndpoint(Connector connector, EndpointURI endpointUri, List transformers, List responseTransformers, String name, Map properties, TransactionConfig transactionConfig, Filter filter, boolean deleteUnacceptedMessages, EndpointSecurityFilter securityFilter, boolean synchronous, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate)
           
DefaultInboundEndpoint(Connector connector, EndpointURI endpointUri, List transformers, List responseTransformers, String name, Map properties, TransactionConfig transactionConfig, Filter filter, boolean deleteUnacceptedMessage, EndpointSecurityFilter securityFilter, boolean synchronous, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate)
           
DefaultOutboundEndpoint(Connector connector, EndpointURI endpointUri, List transformers, List responseTransformers, String name, Map properties, TransactionConfig transactionConfig, Filter filter, boolean deleteUnacceptedMessage, EndpointSecurityFilter securityFilter, boolean synchronous, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, String responsePropertiesList)
           
 

Uses of Filter in org.mule.example.geomail.routing
 

Classes in org.mule.example.geomail.routing that implement Filter
 class InCacheFilter
          TODO
 

Uses of Filter in org.mule.impl.expression.parsers
 

Methods in org.mule.impl.expression.parsers that return Filter
 Filter ExpressionFilterParser.parseFilterString(String filterString)
           
 

Uses of Filter in org.mule.module.atom.routing
 

Classes in org.mule.module.atom.routing that implement Filter
 class EntryLastUpdatedFilter
          Will filter entries in an atom feed based on the lasted Edited date, falling back to the published date if the edit date was not set
 class FeedLastUpdatedFilter
          Will filter a feed who's update date has changed since the last time it was read.
 class URIRouteFilter
           
 

Methods in org.mule.module.atom.routing that return Filter
 Filter InboundFeedSplitter.getEntryFilter()
           
 

Methods in org.mule.module.atom.routing with parameters of type Filter
 void InboundFeedSplitter.setEntryFilter(Filter entryFilter)
           
 

Uses of Filter in org.mule.module.json.filters
 

Classes in org.mule.module.json.filters that implement Filter
 class IsJsonFilter
          A filter that will determine if the current message payload is a JSON encoded message.
 

Uses of Filter in org.mule.module.ognl.filters
 

Classes in org.mule.module.ognl.filters that implement Filter
 class OGNLFilter
           
 

Uses of Filter in org.mule.module.rss.routing
 

Methods in org.mule.module.rss.routing that return Filter
 Filter InboundFeedSplitter.getEntryFilter()
           
 

Methods in org.mule.module.rss.routing with parameters of type Filter
 void InboundFeedSplitter.setEntryFilter(Filter entryFilter)
           
 

Uses of Filter in org.mule.module.sxc
 

Classes in org.mule.module.sxc that implement Filter
 class SxcFilter
           
 

Methods in org.mule.module.sxc with parameters of type Filter
protected  void SxcFilteringOutboundRouter.addEventHandlers(com.envoisolutions.sxc.xpath.XPathBuilder builder, Filter filter)
           
 void SxcFilteringOutboundRouter.setFilter(Filter filter)
           
 

Uses of Filter in org.mule.module.xml.filters
 

Classes in org.mule.module.xml.filters that implement Filter
 class IsXmlFilter
          IsXmlFilter accepts a String or byte[] if its contents are valid (well-formed) XML.
 class JaxenFilter
          JaxenFilter evaluates an XPath expression against an XML document using Jaxen.
 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 SchemaValidationFilter
          Filter for schema validation.
 class XPathFilter
           
 

Uses of Filter in org.mule.routing.filters
 

Classes in org.mule.routing.filters that implement Filter
 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 ExpressionFilter
          Allows boolean expressions to be executed on a message.
 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 String argument against a regular expression.
 class WildcardFilter
          WildcardFilter is used to match Strings against wildcards.
 

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

Classes in org.mule.routing.filters.logic that implement Filter
 class AbstractFilterCollection
          Manages a filter collection.
 class AndFilter
          AndFilter accepts only if all the filters accept.
 class NotFilter
          NotFilter accepts if the filter does not accept.
 class OrFilter
          OrFilter accepts if any of the filters accept the message
 

Methods in org.mule.routing.filters.logic that return Filter
 Filter NotFilter.getFilter()
           
 

Methods in org.mule.routing.filters.logic that return types with arguments of type Filter
 List<Filter> AbstractFilterCollection.getFilters()
           
 

Methods in org.mule.routing.filters.logic with parameters of type Filter
 void NotFilter.setFilter(Filter filter)
           
 

Method parameters in org.mule.routing.filters.logic with type arguments of type Filter
 void AbstractFilterCollection.setFilters(List<Filter> filters)
           
 

Constructors in org.mule.routing.filters.logic with parameters of type Filter
AbstractFilterCollection(Filter... filters)
           
AndFilter(Filter... filters)
           
NotFilter(Filter filter)
           
OrFilter(Filter... filters)
           
 

Constructor parameters in org.mule.routing.filters.logic with type arguments of type Filter
AbstractFilterCollection(List<Filter> filters)
           
AndFilter(List<Filter> filters)
           
OrFilter(List<Filter> filters)
           
 

Uses of Filter in org.mule.routing.inbound
 

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

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

Uses of Filter in org.mule.routing.outbound
 

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

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

Uses of Filter in org.mule.transport.email.filters
 

Classes in org.mule.transport.email.filters that implement Filter
 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 Filter in org.mule.transport.file.filters
 

Classes in org.mule.transport.file.filters that implement Filter
 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 Filter in org.mule.transport.http.components
 

Methods in org.mule.transport.http.components that return Filter
 Filter RestServiceWrapper.getFilter()
           
 

Methods in org.mule.transport.http.components with parameters of type Filter
 void RestServiceWrapper.setFilter(Filter errorFilter)
           
 

Uses of Filter in org.mule.transport.http.config
 

Methods in org.mule.transport.http.config that return Filter
 Filter ErrorFilterFactoryBean.getFilter()
           
 

Methods in org.mule.transport.http.config with parameters of type Filter
 void ErrorFilterFactoryBean.setFilter(Filter filter)
           
 

Uses of Filter in org.mule.transport.http.filters
 

Classes in org.mule.transport.http.filters that implement Filter
 class HttpRequestWildcardFilter
          HttpRequestWildcardFilter filters out wildcard URL expressions.
 

Uses of Filter in org.mule.transport.jms.filters
 

Classes in org.mule.transport.jms.filters that implement Filter
 class JmsPropertyFilter
           
 class JmsSelectorFilter
          JmsSelectorFilter is a wrapper for a JMS Selector.
 

Uses of Filter in org.mule.transport.xmpp.filters
 

Classes in org.mule.transport.xmpp.filters that implement Filter
 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.
 



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