Package io.dropwizard.jersey.caching
Annotation Type CacheControl
-
@Documented @Target(METHOD) @Retention(RUNTIME) public @interface CacheControl
An annotation which adds a constantCache-Controlheader to the response produced by the annotated method.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanimmutableIf set, adds aCache-Controlheader to the response which indicates the response is immutable and should be kept in cache for as long as possible.booleanisPrivateControls theprivatesetting of theCache-Controlheader.intmaxAgeControls themax-agesetting of theCache-Controlheader.TimeUnitmaxAgeUnitThe time unit ofmaxAge().booleanmustRevalidateControls themust-revalidatesetting of theCache-Controlheader.booleannoCacheControls theno-cachesetting of theCache-Controlheader.booleannoStoreControls theno-storesetting of theCache-Controlheader.booleannoTransformControls theno-transformsetting of theCache-Controlheader.booleanproxyRevalidateControls theproxy-revalidatesetting of theCache-Controlheader.intsharedMaxAgeControls thes-max-agesetting of theCache-Controlheader.TimeUnitsharedMaxAgeUnitThe time unit ofsharedMaxAge().
-
-
-
Element Detail
-
immutable
boolean immutable
If set, adds aCache-Controlheader to the response which indicates the response is immutable and should be kept in cache for as long as possible. (Technically, this corresponds to amax-ageof one year.- Returns:
trueif the response should be considered immutable and cached indefinitely- See Also:
maxAge()
- Default:
- false
-
-
-
isPrivate
boolean isPrivate
Controls theprivatesetting of theCache-Controlheader.From the HTTPbis spec:
The private response directive indicates that the response message is intended for a single user and MUST NOT be stored by a shared cache. A private cache MAY store the response. If the private response directive specifies one or more field-names, this requirement is limited to the field-values associated with the listed response header fields. That is, a shared cache MUST NOT store the specified field-names(s), whereas it MAY store the remainder of the response message. Note: This usage of the word "private" only controls where the response can be stored; it cannot ensure the privacy of the message content. Also, private response directives with field-names are often handled by implementations as if an unqualified private directive was received; i.e., the special handling for the qualified form is not widely implemented.
- Returns:
trueif the response must not be stored by a shared cache
- Default:
- false
-
-
-
noCache
boolean noCache
Controls theno-cachesetting of theCache-Controlheader.From the HTTPbis spec:
The no-cache response directive indicates that the response MUST NOT be used to satisfy a subsequent request without successful validation on the origin server. This allows an origin server to prevent a cache from using it to satisfy a request without contacting it, even by caches that have been configured to return stale responses. If the no-cache response directive specifies one or more field-names, then a cache MAY use the response to satisfy a subsequent request, subject to any other restrictions on caching. However, any header fields in the response that have the field-name(s) listed MUST NOT be sent in the response to a subsequent request without successful revalidation with the origin server. This allows an origin server to prevent the re-use of certain header fields in a response, while still allowing caching of the rest of the response. Note: Most HTTP/1.0 caches will not recognize or obey this directive. Also, no-cache response directives with field-names are often handled by implementations as if an unqualified no-cache directive was received; i.e., the special handling for the qualified form is not widely implemented.
- Returns:
trueif the response must not be cached
- Default:
- false
-
-
-
noStore
boolean noStore
Controls theno-storesetting of theCache-Controlheader.From the HTTPbis spec:
The no-store response directive indicates that a cache MUST NOT store any part of either the immediate request or response. This directive applies to both private and shared caches. "MUST NOT store" in this context means that the cache MUST NOT intentionally store the information in non-volatile storage, and MUST make a best-effort attempt to remove the information from volatile storage as promptly as possible after forwarding it. This directive is NOT a reliable or sufficient mechanism for ensuring privacy. In particular, malicious or compromised caches might not recognize or obey this directive, and communications networks might be vulnerable to eavesdropping.
- Returns:
trueif the response must not be stored
- Default:
- false
-
-
-
noTransform
boolean noTransform
Controls theno-transformsetting of theCache-Controlheader.From the HTTPbis spec:
The no-transform response directive indicates that an intermediary (regardless of whether it implements a cache) MUST NOT change the Content-Encoding, Content-Range or Content-Type response header fields, nor the response representation.
- Returns:
trueif the response must not be transformed by intermediaries
- Default:
- true
-
-
-
mustRevalidate
boolean mustRevalidate
Controls themust-revalidatesetting of theCache-Controlheader.From the HTTPbis spec:
The must-revalidate response directive indicates that once it has become stale, a cache MUST NOT use the response to satisfy subsequent requests without successful validation on the origin server. The must-revalidate directive is necessary to support reliable operation for certain protocol features. In all circumstances a cache MUST obey the must-revalidate directive; in particular, if a cache cannot reach the origin server for any reason, it MUST generate a 504 (Gateway Timeout) response. The must-revalidate directive ought to be used by servers if and only if failure to validate a request on the representation could result in incorrect operation, such as a silently unexecuted financial transaction.
- Returns:
trueif caches must revalidate the content when it becomes stale
- Default:
- false
-
-
-
proxyRevalidate
boolean proxyRevalidate
Controls theproxy-revalidatesetting of theCache-Controlheader.From the HTTPbis spec:
The proxy-revalidate response directive has the same meaning as the must-revalidate response directive, except that it does not apply to private caches.
- Returns:
trueif only proxies must revalidate the content when it becomes stale
- Default:
- false
-
-
-
maxAge
int maxAge
Controls themax-agesetting of theCache-Controlheader. The unit of this amount is determined bymaxAgeUnit().From the HTTPbis spec:
The max-age response directive indicates that the response is to be considered stale after its age is greater than the specified number of seconds.
- Returns:
- the number of
maxAgeUnit()s for which the response should be considered fresh - See Also:
maxAgeUnit()
- Default:
- -1
-
-
-
sharedMaxAge
int sharedMaxAge
Controls thes-max-agesetting of theCache-Controlheader. The unit of this amount is controlled bysharedMaxAgeUnit().From the HTTPbis spec:
The s-maxage response directive indicates that, in shared caches, the maximum age specified by this directive overrides the maximum age specified by either the max-age directive or the Expires header field. The s-maxage directive also implies the semantics of the proxy-revalidate response directive.
- Returns:
- the number of
sharedMaxAgeUnit()s for which the response should be considered fresh
- Default:
- -1
-
-
-
sharedMaxAgeUnit
TimeUnit sharedMaxAgeUnit
The time unit ofsharedMaxAge().- Returns:
- the time unit of
sharedMaxAge()
- Default:
- java.util.concurrent.TimeUnit.SECONDS
-
-