Uses of Interface
org.forgerock.json.resource.Filter
-
Packages that use Filter Package Description org.forgerock.am.iot This package contains all classes pertaining to AM's IoT functionality.org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.openam.rest.fluent This package contains classes for the handling of CREST routers in a fluent fashion.org.forgerock.openam.rest.resource This package contains classes for the handling of REST request to CREST Resource endpoints with the concept of realms in OpenAM built in. -
-
Uses of Filter in org.forgerock.am.iot
Classes in org.forgerock.am.iot that implement Filter Modifier and Type Class Description class
ThingsAccessAuditFilter
Audit filter for capturing details about the things endpoint responses. -
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.class
ResourceApiVersionSpecificationFilter
AFilter
supporting the specification of resource API version configuration to be used when a request on a specific endpoint does not contain an Accept-API-Version header.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.openam.rest.fluent
Classes in org.forgerock.openam.rest.fluent with annotations of type with type parameters of type that implement declared as with annotations of type with type parameters of type with annotations of type with annotations of type with type parameters of type that return that return types with arguments of type with parameters of type with type arguments of type that throw with annotations of type with annotations of type with parameters of type with type arguments of type that throw Filter Modifier and Type Class Description class
org.forgerock.openam.rest.fluent.AuditFilter
Filter which will audit any requests that pass through it. -
Uses of Filter in org.forgerock.openam.rest.resource
Classes in org.forgerock.openam.rest.resource that implement Filter Modifier and Type Class Description class
RestrictedTokenContextFilter
A filter that can be applied to a CREST route in order to enter the restricted token context for a request if it contains a requester token as well as subject token.
-