@Provider @PreMatching public class AcceptHeaderByFileSuffixFilter extends Object implements ContainerRequestFilter
| Constructor and Description |
|---|
AcceptHeaderByFileSuffixFilter() |
| Modifier and Type | Method and Description |
|---|---|
void |
filter(ContainerRequestContext requestContext)
Filter method called before a request has been dispatched to a resource.
|
void |
setLanguageMappings(Map<String,String> languageMappings) |
void |
setMediaTypeMappings(Map<String,MediaType> mediaTypeMappings) |
public void filter(ContainerRequestContext requestContext) throws IOException
ContainerRequestFilter
Filters in the filter chain are ordered according to their priority
(see Priority). If a request filter
produces a response by calling ContainerRequestContext.abortWith(javax.ws.rs.core.Response)
method, the execution of the (either pre-match or post-match) request filter
chain is stopped and the response is passed to the corresponding response
filter chain (either pre-match or post-match). For example, a pre-match
caching filter may produce a response in this way, which would effectively
skip any post-match request filters as well as post-match response filters.
Note however that a responses produced in this manner would still be processed
by the pre-match response filter chain.
filter in interface ContainerRequestFilterrequestContext - request context.IOException - if an I/O exception occurs.PreMatchingCopyright © 2018 JBoss by Red Hat. All rights reserved.