Uses of Interface
jakarta.ws.rs.container.ContainerRequestFilter
-
Packages that use ContainerRequestFilter Package Description org.glassfish.jersey.server.filter Provides core server filters.org.glassfish.jersey.server.internal Jersey server-side internal classes.org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes.org.glassfish.jersey.server.monitoring Jersey server-side monitoring JMX MBeans interfaces. -
-
Uses of ContainerRequestFilter in org.glassfish.jersey.server.filter
Classes in org.glassfish.jersey.server.filter that implement ContainerRequestFilter Modifier and Type Class Description classCsrfProtectionFilterSimple 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.classHttpMethodOverrideFilterA 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.classUriConnegFilterA URI-based content negotiation filter mapping a dot-declared suffix in URI to media type that is the value of theAcceptheader or a language that is the value of theAccept-Languageheader. -
Uses of ContainerRequestFilter in org.glassfish.jersey.server.internal
Methods in org.glassfish.jersey.server.internal that return types with arguments of type ContainerRequestFilter Modifier and Type Method Description Iterable<RankedProvider<ContainerRequestFilter>>ProcessingProviders. getGlobalRequestFilters()Get global request filters.MultivaluedMap<Class<? extends Annotation>,RankedProvider<ContainerRequestFilter>>ProcessingProviders. getNameBoundRequestFilters()Get name bound request filters.MultivaluedMap<RankedProvider<ContainerRequestFilter>,Class<? extends Annotation>>ProcessingProviders. getNameBoundRequestFiltersInverse()Get name bound request filter inverse map.List<RankedProvider<ContainerRequestFilter>>ProcessingProviders. getPreMatchFilters()Getpre-matchingrequest filters.Iterable<ContainerRequestFilter>ProcessingProviders. getSortedGlobalRequestFilters()Get global request filters sorted by priority. -
Uses of ContainerRequestFilter in org.glassfish.jersey.server.model
Methods in org.glassfish.jersey.server.model that return types with arguments of type ContainerRequestFilter Modifier and Type Method Description Iterable<RankedProvider<ContainerRequestFilter>>ResourceMethodInvoker. getRequestFilters()Get all bound request filters applicable to theresource methodwrapped by this invoker. -
Uses of ContainerRequestFilter in org.glassfish.jersey.server.monitoring
Methods in org.glassfish.jersey.server.monitoring that return types with arguments of type ContainerRequestFilter Modifier and Type Method Description Iterable<ContainerRequestFilter>RequestEvent. getContainerRequestFilters()Getcontainer request filtersused during the request filtering phase.
-