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