Uses of Interface
org.forgerock.json.resource.Filter
-
Packages that use Filter Package Description org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.openig.tools Common tools used in policy service. -
-
Uses of Filter in org.forgerock.json.resource
Classes in org.forgerock.json.resource that implement Filter Modifier and Type Class Description class
ResourceApiVersionRoutingFilter
API Version routing filter which creates aApiVersionRouterContext
which contains the default routing behaviour when the Accept-API-Version header is set on the request.Methods in org.forgerock.json.resource that return Filter Modifier and Type Method Description static Filter
Filters. conditionalFilter(FilterCondition condition, Filter subFilter)
Returns aFilter
which will only invokesubFilter
when the provided filter condition matches the request being processed.static Filter
RouteMatchers. resourceApiVersionContextFilter(ResourceApiVersionBehaviourManager behaviourManager)
Creates aFilter
which MUST be placed, in the route, before any API Version routing takes place.Methods in org.forgerock.json.resource that return types with arguments of type Filter Modifier and Type Method Description List<Filter>
FilterChain. getFilters()
Returns a modifiable list containing the list of filters in this filter chain.Methods in org.forgerock.json.resource with parameters of type Filter Modifier and Type Method Description static Filter
Filters. conditionalFilter(FilterCondition condition, Filter subFilter)
Returns aFilter
which will only invokesubFilter
when the provided filter condition matches the request being processed.Constructors in org.forgerock.json.resource with parameters of type Filter Constructor Description FilterChain(RequestHandler target, Filter... filters)
Creates a filter chain containing the provided list of filters.Constructor parameters in org.forgerock.json.resource with type arguments of type Filter Constructor Description FilterChain(RequestHandler target, Collection<Filter> filters)
Creates a filter chain containing the provided list of filters. -
Uses of Filter in org.forgerock.openig.tools
Classes in org.forgerock.openig.tools that implement Filter Modifier and Type Class Description class
CachePolicyDecisionFilter
A CRESTFilter
that caches policy decisions.class
ExecutorFilter
ThisFilter
executes all CREST operations in an executor, effectively running the rest of the chain in another thread.class
NotSupportedFilter
A convenient implementation of a CRESTFilter
that just returns aNotSupportedException
for all the methods implementations.
-