Package io.micronaut.http.cachecontrol
Enum Class ResponseDirective
- All Implemented Interfaces:
Serializable
,Comparable<ResponseDirective>
,Constable
Represents the response directives for the HTTP Cache-Control header.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe immutable response directive indicates that the response will not be updated while it's fresh.Themax-age=N
response directive indicates that the response remains fresh until N seconds after the response is generated.The must-revalidate response directive indicates that the response can be stored in caches and can be reused while fresh.The must-understand response directive indicates that a cache should store the response only if it understands the requirements for caching based on status code.The no-cache response directive indicates that the response can be stored in caches, but the response must be validated with the origin server before each reuse, even when the cache is disconnected from the origin server.The no-store response directive indicates that any caches of any kind (private or shared) should not store this response.Indicates that any intermediary (regardless of whether it implements a cache) shouldn't transform the response contents.The private response directive indicates that the response can be stored only in a private cache (e.g.The proxy-revalidate response directive is the equivalent of must-revalidate, but specifically for shared caches only.The public response directive indicates that the response can be stored in a shared cache.Thes-maxage
response directive indicates how long the response remains fresh in a shared cache.The stale-if-error response directive indicates that the cache can reuse a stale response when an upstream server generates an error, or when the error is generated locally.The stale-while-revalidate response directive indicates that the cache could reuse a stale response while it revalidates it to a cache. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the lowercase string value of the directive for use in HTTP headers.static ResponseDirective
Returns the enum constant of this class with the specified name.static ResponseDirective[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MAX_AGE
Themax-age=N
response directive indicates that the response remains fresh until N seconds after the response is generated. -
S_MAXAGE
Thes-maxage
response directive indicates how long the response remains fresh in a shared cache. -
NO_CACHE
The no-cache response directive indicates that the response can be stored in caches, but the response must be validated with the origin server before each reuse, even when the cache is disconnected from the origin server. -
MUST_REVALIDATE
The must-revalidate response directive indicates that the response can be stored in caches and can be reused while fresh. If the response becomes stale, it must be validated with the origin server before reuse. -
PROXY_REVALIDATE
The proxy-revalidate response directive is the equivalent of must-revalidate, but specifically for shared caches only. -
NO_STORE
The no-store response directive indicates that any caches of any kind (private or shared) should not store this response. -
PRIVATE
The private response directive indicates that the response can be stored only in a private cache (e.g. local caches in browsers). -
PUBLIC
The public response directive indicates that the response can be stored in a shared cache. -
MUST_UNDERSTAND
The must-understand response directive indicates that a cache should store the response only if it understands the requirements for caching based on status code. -
NO_TRANSFORM
Indicates that any intermediary (regardless of whether it implements a cache) shouldn't transform the response contents. -
IMMUTABLE
The immutable response directive indicates that the response will not be updated while it's fresh. -
STALE_WHILE_REVALIDATE
The stale-while-revalidate response directive indicates that the cache could reuse a stale response while it revalidates it to a cache. -
STALE_IF_ERROR
The stale-if-error response directive indicates that the cache can reuse a stale response when an upstream server generates an error, or when the error is generated locally.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
Returns the lowercase string value of the directive for use in HTTP headers.- Overrides:
toString
in classEnum<ResponseDirective>
-