Uses of Class
org.restlet.routing.Filter
-
Packages that use Filter Package Description 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.ext.crypto Support for cryptography including Amazon S3 and Windows Azure client authentication.org.restlet.ext.json Support for JSON representations.org.restlet.ext.velocity Integration with Apache Velocity @minor-version@.org.restlet.ext.wadl Support the WADL specification.org.restlet.ext.xml Support for XML and XSLT representations.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
Fields in org.restlet.engine declared as Filter Modifier and Type Field Description private FilterCompositeHelper. firstInboundFilterThe first inbound filter.private FilterCompositeHelper. firstOutboundFilterThe first outbound Filter.private FilterCompositeHelper. lastInboundFilterThe last inbound filter.private FilterCompositeHelper. lastOutboundFilterThe last outbound filter.Methods in org.restlet.engine that return Filter Modifier and Type Method Description FilterCompositeHelper. getFirstInboundFilter()Returns the first inbound filter.FilterCompositeHelper. getFirstOutboundFilter()Returns the first outbound filter.protected FilterCompositeHelper. getLastInboundFilter()Returns the last inbound filter.protected FilterCompositeHelper. getLastOutboundFilter()Returns the last outbound filter.Methods in org.restlet.engine with parameters of type Filter Modifier and Type Method Description protected voidCompositeHelper. addInboundFilter(Filter filter)Adds a new inbound filter to the chain.protected voidCompositeHelper. addOutboundFilter(Filter filter)Adds a new outbound filter to the chain.protected voidCompositeHelper. setFirstInboundFilter(Filter firstInboundFilter)Sets the first inbound filter.protected voidCompositeHelper. setFirstOutboundFilter(Filter firstOutboundFilter)Sets the first outbound filter.protected voidCompositeHelper. setLastInboundFilter(Filter last)Sets the last inbound filter.protected voidCompositeHelper. setLastOutboundFilter(Filter last)Sets the last outbound filter. -
Uses of Filter in org.restlet.engine.application
Subclasses of Filter in org.restlet.engine.application Modifier and Type Class Description classCorsFilterFilter that helps support CORS requests.classDecoderFilter uncompressing entities.classEncoderFilter compressing entities.classRangeFilterFilter that is in charge to check the responses to requests for partial content.classStatusFilterFilter associating a response entity based on the status.classTunnelFilterFilter tunneling browser calls into full REST calls. -
Uses of Filter in org.restlet.engine.component
Subclasses of Filter in org.restlet.engine.component Modifier and Type Class Description classClientRouteRouter scorer based on a target client connector.classComponentClientDispatcherComponent client dispatcher.classComponentServerDispatcherComponent server dispatcher.classHostRouteRoute based on a target VirtualHost. -
Uses of Filter in org.restlet.engine.log
Subclasses of Filter in org.restlet.engine.log Modifier and Type Class Description classLogFilterFilter 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 Modifier and Type Class Description classChildClientDispatcherClient dispatcher for a component child.classTemplateDispatcherFilter that resolves URI templates in the target resource URI reference using the request attributes. -
Uses of Filter in org.restlet.ext.crypto
Subclasses of Filter in org.restlet.ext.crypto Modifier and Type Class Description classAwsAuthenticatorAuthenticator supporting theChallengeScheme.HTTP_AWS_S3scheme.classCookieAuthenticatorChallenge authenticator based on browser cookies.classDigestAuthenticatorAuthenticator supporting the digest challenge authentication schemes. -
Uses of Filter in org.restlet.ext.json
Subclasses of Filter in org.restlet.ext.json Modifier and Type Class Description classJsonpFilterFilter that converts response entity of the JSON media type into a JSONP callback document. -
Uses of Filter in org.restlet.ext.velocity
Subclasses of Filter in org.restlet.ext.velocity Modifier and Type Class Description classTemplateFilterFilter response's entity and wrap it with a Velocity's template representation. -
Uses of Filter in org.restlet.ext.wadl
Methods in org.restlet.ext.wadl with parameters of type Filter Modifier and Type Method Description private ResourceInfoWadlApplication. getResourceInfo(ApplicationInfo applicationInfo, Filter filter, java.lang.String path, Request request, Response response)Deprecated.Completes the data available about a given Filter instance. -
Uses of Filter in org.restlet.ext.xml
Subclasses of Filter in org.restlet.ext.xml Modifier and Type Class Description classTransformerFilter that can transform XML representations by applying an XSLT transform sheet. -
Uses of Filter in org.restlet.routing
Subclasses of Filter in org.restlet.routing Modifier and Type Class Description classExtractorFilter extracting attributes from a call.classRouteFilter scoring the affinity of calls with the attached Restlet.classTemplateRouteFilter scoring the affinity of calls with the attached Restlet.classValidatorFilter validating attributes from a call. -
Uses of Filter in org.restlet.security
Subclasses of Filter in org.restlet.security Modifier and Type Class Description classAuthenticatorFilter authenticating the client sending the inbound request.classAuthorizerFilter authorizing inbound request.classCertificateAuthenticatorAuthenticator based on the SSL client certificate.classChallengeAuthenticatorAuthenticator based on a challenge scheme.classConfidentialAuthorizerAuthorizer allowing only confidential calls.classMethodAuthorizerAuthorizer based on authorized methods.classRoleAuthorizerAuthorizer based on authorized and forbidden roles. -
Uses of Filter in org.restlet.service
Methods in org.restlet.service that return Filter Modifier and Type Method Description FilterCorsService. createInboundFilter(Context context)FilterDecoderService. createInboundFilter(Context context)FilterEncoderService. createInboundFilter(Context context)FilterLogService. createInboundFilter(Context context)FilterRangeService. createInboundFilter(Context context)FilterService. createInboundFilter(Context context)Create the filter that should be invoked for incoming calls.FilterStatusService. createInboundFilter(Context context)FilterTunnelService. createInboundFilter(Context context)FilterDecoderService. createOutboundFilter(Context context)FilterEncoderService. createOutboundFilter(Context context)FilterService. createOutboundFilter(Context context)Create the filter that should be invoked for outgoing calls.
-