Uses of Class
org.restlet.routing.Filter

Packages that use Filter
org.restlet.engine Implementation of Restlet API. 
org.restlet.engine.application Supports Restlet applications. 
org.restlet.engine.component Supports Restlet components. 
org.restlet.engine.log Supports the log service. 
org.restlet.engine.util General utilities. 
org.restlet.routing Classes related to call routing. 
org.restlet.security Classes related to security. 
org.restlet.service Services used by applications and components. 
 

Uses of Filter in org.restlet.engine
 

Methods in org.restlet.engine that return Filter
 Filter CompositeHelper.getFirstInboundFilter()
          Returns the first inbound filter.
 Filter CompositeHelper.getFirstOutboundFilter()
          Returns the first outbound filter.
protected  Filter CompositeHelper.getLastInboundFilter()
          Returns the last inbound filter.
protected  Filter CompositeHelper.getLastOutboundFilter()
          Returns the last outbound filter.
 

Methods in org.restlet.engine with parameters of type Filter
protected  void CompositeHelper.addInboundFilter(Filter filter)
          Adds a new inbound filter to the chain.
protected  void CompositeHelper.addOutboundFilter(Filter filter)
          Adds a new outbound filter to the chain.
protected  void CompositeHelper.setFirstInboundFilter(Filter firstInboundFilter)
          Sets the first inbound filter.
protected  void CompositeHelper.setFirstOutboundFilter(Filter firstOutboundFilter)
          Sets the first outbound filter.
protected  void CompositeHelper.setLastInboundFilter(Filter last)
          Sets the last inbound filter.
protected  void CompositeHelper.setLastOutboundFilter(Filter last)
          Sets the last outbound filter.
 

Uses of Filter in org.restlet.engine.application
 

Subclasses of Filter in org.restlet.engine.application
 class Decoder
          Filter uncompressing entities.
 class Encoder
          Filter compressing entities.
 class RangeFilter
          Filter that is in charge to check the responses to requests for partial content.
 class StatusFilter
          Filter associating a response entity based on the status.
 class TunnelFilter
          Filter tunneling browser calls into full REST calls.
 

Uses of Filter in org.restlet.engine.component
 

Subclasses of Filter in org.restlet.engine.component
 class ClientRoute
          Router scorer based on a target client connector.
 class ComponentClientDispatcher
          Component client dispatcher.
 class ComponentServerDispatcher
          Component server dispatcher.
 class HostRoute
          Route based on a target VirtualHost.
 

Uses of Filter in org.restlet.engine.log
 

Subclasses of Filter in org.restlet.engine.log
 class LogFilter
          Filter logging all calls after their handling by the target Restlet.
 

Uses of Filter in org.restlet.engine.util
 

Subclasses of Filter in org.restlet.engine.util
 class ChildClientDispatcher
          Client dispatcher for a component child.
 class TemplateDispatcher
          Filter that resolves URI templates in the target resource URI reference using the request attributes.
 

Uses of Filter in org.restlet.routing
 

Subclasses of Filter in org.restlet.routing
 class Extractor
          Filter extracting attributes from a call.
 class Route
          Filter scoring the affinity of calls with the attached Restlet.
 class TemplateRoute
          Filter scoring the affinity of calls with the attached Restlet.
 class Validator
          Filter validating attributes from a call.
 

Uses of Filter in org.restlet.security
 

Subclasses of Filter in org.restlet.security
 class Authenticator
          Filter authenticating the client sending the inbound request.
 class Authorizer
          Filter authorizing inbound request.
 class CertificateAuthenticator
          Authenticator based on the SSL client certificate.
 class ChallengeAuthenticator
          Authenticator based on a challenge scheme.
 class ConfidentialAuthorizer
          Authorizer allowing only confidential calls.
 class MethodAuthorizer
          Authorizer based on authorized methods.
 class RoleAuthorizer
          Authorizer based on authorized and forbidden roles.
 

Uses of Filter in org.restlet.service
 

Methods in org.restlet.service that return Filter
 Filter EncoderService.createInboundFilter(Context context)
           
 Filter TunnelService.createInboundFilter(Context context)
           
 Filter Service.createInboundFilter(Context context)
          Create the filter that should be invoked for incoming calls.
 Filter RangeService.createInboundFilter(Context context)
           
 Filter LogService.createInboundFilter(Context context)
           
 Filter StatusService.createInboundFilter(Context context)
           
 Filter DecoderService.createInboundFilter(Context context)
           
 Filter EncoderService.createOutboundFilter(Context context)
           
 Filter Service.createOutboundFilter(Context context)
          Create the filter that should be invoked for outgoing calls.
 Filter DecoderService.createOutboundFilter(Context context)
           
 



Copyright © 2005-2014 Restlet.