public class ServerCacheHitFilter extends Object implements ContainerRequestFilter
Modifier and Type | Field and Description |
---|---|
protected ServerCache |
cache |
static String |
DO_NOT_CACHE_RESPONSE |
protected Request |
validation |
Constructor and Description |
---|
ServerCacheHitFilter(ServerCache cache) |
Modifier and Type | Method and Description |
---|---|
void |
filter(ContainerRequestContext request)
Filter method called before a request has been dispatched to a resource.
|
protected ServerCache cache
public static final String DO_NOT_CACHE_RESPONSE
public ServerCacheHitFilter(ServerCache cache)
public void filter(ContainerRequestContext request) throws IOException
ContainerRequestFilter
Filters in the filter chain are ordered according to their javax.annotation.Priority
class-level annotation value.
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 ContainerRequestFilter
request
- request context.IOException
- if an I/O exception occurs.PreMatching
Copyright © 2014. All Rights Reserved.