Uses of Interface
javax.ws.rs.container.ContainerRequestFilter

Packages that use ContainerRequestFilter
org.glassfish.jersey.filter Jersey Request & Response Filtering support & utility classes. 
org.glassfish.jersey.server.filter Provides core server filters. 
org.glassfish.jersey.server.internal.routing Jersey server-side internal resource routing classes. 
org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes. 
 

Uses of ContainerRequestFilter in org.glassfish.jersey.filter
 

Classes in org.glassfish.jersey.filter that implement ContainerRequestFilter
 class LoggingFilter
          Universal logging filter.
 

Uses of ContainerRequestFilter in org.glassfish.jersey.server.filter
 

Classes in org.glassfish.jersey.server.filter that implement ContainerRequestFilter
 class CsrfProtectionFilter
          Simple server-side request filter that implements CSRF protection as per the Guidelines for Implementation of REST by NSA (section IV.F) and section 4.3 of this paper.
 class HttpMethodOverrideFilter
          A pre-matching filter to support HTTP method replacing of a POST request to a request utilizing another HTTP method for the case where proxies or HTTP servers would otherwise block that HTTP method.
 class UriConnegFilter
          A URI-based content negotiation filter mapping a dot-declared suffix in URI to media type that is the value of the Accept header or a language that is the value of the Accept-Language header.
 

Methods in org.glassfish.jersey.server.filter that return ContainerRequestFilter
 ContainerRequestFilter RolesAllowedDynamicBinder.getBoundProvider(ResourceInfo resourceInfo)
           
 

Uses of ContainerRequestFilter in org.glassfish.jersey.server.internal.routing
 

Methods in org.glassfish.jersey.server.internal.routing that return types with arguments of type ContainerRequestFilter
 java.util.Collection<ContainerRequestFilter> RoutingContext.getBoundRequestFilters()
          Get all bound request filters applicable to this request.
 

Method parameters in org.glassfish.jersey.server.internal.routing with type arguments of type ContainerRequestFilter
 void RuntimeModelBuilder.setBoundProviders(MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,ContainerRequestFilter> nameBoundRequestFilters, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,ContainerResponseFilter> nameBoundResponseFilters, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,ReaderInterceptor> nameBoundReaderInterceptors, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,WriterInterceptor> nameBoundWriterInterceptors, java.util.List<DynamicBinder> dynamicBinders)
          Set the name bound filters and dynamic binders.
 

Uses of ContainerRequestFilter in org.glassfish.jersey.server.model
 

Methods in org.glassfish.jersey.server.model that return types with arguments of type ContainerRequestFilter
 java.util.Collection<ContainerRequestFilter> ResourceMethodInvoker.getRequestFilters()
          Get all bound request filters applicable to the resource method wrapped by this invoker.
 

Method parameters in org.glassfish.jersey.server.model with type arguments of type ContainerRequestFilter
 ResourceMethodInvoker ResourceMethodInvoker.Builder.build(ResourceMethod method, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,ContainerRequestFilter> nameBoundRequestFilters, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,ContainerResponseFilter> nameBoundResponseFilters, java.util.Collection<ReaderInterceptor> globalReaderInterceptors, java.util.Collection<WriterInterceptor> globalWriterInterceptors, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,ReaderInterceptor> nameBoundReaderInterceptors, MultivaluedMap<java.lang.Class<? extends java.lang.annotation.Annotation>,WriterInterceptor> nameBoundWriterInterceptors, java.util.Collection<DynamicBinder> dynamicBinders)
          Build a new resource method invoker instance.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.