Uses of Class
org.forgerock.json.resource.FilterChain
-
Packages that use FilterChain Package Description org.forgerock.authz.filter.crest This package defines the authorization framework implementation classes for use in a CREST environment.org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions. -
-
Uses of FilterChain in org.forgerock.authz.filter.crest
Methods in org.forgerock.authz.filter.crest that return FilterChain Modifier and Type Method Description static FilterChain
AuthorizationFilters. createAuthorizationFilter(CollectionResourceProvider target, List<CrestAuthorizationModule> modules)
Returns a newFilterChain
which will perform authorization for each request before allowing access to the provided collection resource provider.static FilterChain
AuthorizationFilters. createAuthorizationFilter(CollectionResourceProvider target, CrestAuthorizationModule... modules)
Returns a newFilterChain
which will perform authorization for each request before allowing access to the provided collection resource provider.static FilterChain
AuthorizationFilters. createAuthorizationFilter(RequestHandler target, List<CrestAuthorizationModule> modules)
Returns a newFilterChain
which will perform authorization for each request before allowing access to the provided RequestHandler.static FilterChain
AuthorizationFilters. createAuthorizationFilter(RequestHandler target, CrestAuthorizationModule... modules)
Returns a newFilterChain
which will perform authorization for each request before allowing access to the provided RequestHandler.static FilterChain
AuthorizationFilters. createAuthorizationFilter(SingletonResourceProvider target, List<CrestAuthorizationModule> modules)
Returns a newFilterChain
which will perform authorization for each request before allowing access to the provided singleton resource provider.static FilterChain
AuthorizationFilters. createAuthorizationFilter(SingletonResourceProvider target, CrestAuthorizationModule... modules)
Returns a newFilterChain
which will perform authorization for each request before allowing access to the provided singleton resource provider. -
Uses of FilterChain in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return FilterChain Modifier and Type Method Description FilterChain
FilterChain. setTarget(RequestHandler target)
Sets the target request handler which will be invoked once processing has reached the end of the filter chain.
-