public final class CacheControl extends Object
See RFC 2616, 14.9.
| Modifier and Type | Class and Description |
|---|---|
static class |
CacheControl
Builds a
Cache-Control request header.
|
| Modifier and Type | Field and Description |
|---|---|
static CacheControl |
FORCE_CACHE
Cache control request directives that uses the cache only, even if the cached response is stale.
|
static CacheControl |
FORCE_NETWORK
Cache control request directives that require network validation of responses.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isPrivate()
|
boolean |
isPublic()
|
int |
maxAgeSeconds()
The duration past the response's served date that it can be served without validation.
|
int |
maxStaleSeconds()
|
int |
minFreshSeconds()
|
boolean |
mustRevalidate()
|
boolean |
noCache()
In a response, this field's name "no-cache" is misleading.
|
boolean |
noStore()
If true, this response should not be cached.
|
boolean |
noTransform()
|
boolean |
onlyIfCached()
This field's name "only-if-cached" is misleading.
|
static CacheControl |
parse(Headers
Returns the cache directives of
headers.
|
int |
sMaxAgeSeconds()
The "s-maxage" directive is the max age for shared caches.
|
String |
toString()
|
public static final CacheControlFORCE_NETWORK
public static final CacheControlFORCE_CACHE
504 Unsatisfiable Request.
public boolean noCache()
In a request, it means do not use a cache to satisfy the request.
public boolean noStore()
public int maxAgeSeconds()
public int sMaxAgeSeconds()
public boolean isPrivate()
public boolean isPublic()
public boolean mustRevalidate()
public int maxStaleSeconds()
public int minFreshSeconds()
public boolean onlyIfCached()
public boolean noTransform()
public static CacheControlparse(Headers headers)
headers. This honors both Cache-Control and Pragma headers if they are present.
public StringtoString()