public static class Http.Response extends java.lang.Object implements Http.HeaderNames
ACCEPT, ACCEPT_CHARSET, ACCEPT_ENCODING, ACCEPT_LANGUAGE, ACCEPT_RANGES, ACCESS_CONTROL_ALLOW_CREDENTIALS, ACCESS_CONTROL_ALLOW_HEADERS, ACCESS_CONTROL_ALLOW_METHODS, ACCESS_CONTROL_ALLOW_ORIGIN, ACCESS_CONTROL_EXPOSE_HEADERS, ACCESS_CONTROL_MAX_AGE, ACCESS_CONTROL_REQUEST_HEADERS, ACCESS_CONTROL_REQUEST_METHOD, AGE, ALLOW, AUTHORIZATION, CACHE_CONTROL, CONNECTION, CONTENT_DISPOSITION, CONTENT_ENCODING, CONTENT_LANGUAGE, CONTENT_LENGTH, CONTENT_LOCATION, CONTENT_MD5, CONTENT_RANGE, CONTENT_TRANSFER_ENCODING, CONTENT_TYPE, COOKIE, DATE, ETAG, EXPECT, EXPIRES, FORWARDED, FROM, HOST, IF_MATCH, IF_MODIFIED_SINCE, IF_NONE_MATCH, IF_RANGE, IF_UNMODIFIED_SINCE, LAST_MODIFIED, LOCATION, MAX_FORWARDS, ORIGIN, PRAGMA, PROXY_AUTHENTICATE, PROXY_AUTHORIZATION, RANGE, REFERER, RETRY_AFTER, SERVER, SET_COOKIE, SET_COOKIE2, TE, TRAILER, TRANSFER_ENCODING, UPGRADE, USER_AGENT, VARY, VIA, WARNING, WWW_AUTHENTICATE, X_FORWARDED_FOR, X_FORWARDED_HOST, X_FORWARDED_PORT, X_FORWARDED_PROTO, X_REQUESTED_WITH
Constructor and Description |
---|
Response() |
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<Http.Cookie> |
cookies() |
void |
discardCookie(java.lang.String name)
Discard a cookie on the default path ("/") with no domain and that's not secure
|
void |
discardCookie(java.lang.String name,
java.lang.String path)
Discard a cookie on the given path with no domain and not that's secure
|
void |
discardCookie(java.lang.String name,
java.lang.String path,
java.lang.String domain)
Discard a cookie on the given path and domain that's not secure
|
void |
discardCookie(java.lang.String name,
java.lang.String path,
java.lang.String domain,
boolean secure)
Discard a cookie in this result
|
java.util.Map<java.lang.String,java.lang.String> |
getHeaders()
Gets the current response headers.
|
void |
setContentType(java.lang.String contentType)
Sets the content-type of the response.
|
void |
setCookie(java.lang.String name,
java.lang.String value)
Set a new transient cookie with path "/"
For example: |
void |
setCookie(java.lang.String name,
java.lang.String value,
java.lang.Integer maxAge)
Set a new cookie with path "/"
|
void |
setCookie(java.lang.String name,
java.lang.String value,
java.lang.Integer maxAge,
java.lang.String path)
Set a new cookie
|
void |
setCookie(java.lang.String name,
java.lang.String value,
java.lang.Integer maxAge,
java.lang.String path,
java.lang.String domain)
Set a new cookie
|
void |
setCookie(java.lang.String name,
java.lang.String value,
java.lang.Integer maxAge,
java.lang.String path,
java.lang.String domain,
boolean secure,
boolean httpOnly)
Set a new cookie
|
void |
setHeader(java.lang.String name,
java.lang.String value)
Adds a new header to the response.
|
public void setHeader(java.lang.String name, java.lang.String value)
name
- The name of the header. Must not be null.value
- The value of the header. Must not be null.public java.util.Map<java.lang.String,java.lang.String> getHeaders()
public void setContentType(java.lang.String contentType)
contentType
- The content type. Must not be null.public void setCookie(java.lang.String name, java.lang.String value)
response().setCookie("theme", "blue");
name
- Cookie name. Must not be null.value
- Cookie value.public void setCookie(java.lang.String name, java.lang.String value, java.lang.Integer maxAge)
name
- Cookie name. Must not be null.value
- Cookie value.maxAge
- Cookie duration (null for a transient cookie and 0 or less for a cookie that expires now).public void setCookie(java.lang.String name, java.lang.String value, java.lang.Integer maxAge, java.lang.String path)
name
- Cookie name. Must not be null.value
- Cookie valuemaxAge
- Cookie duration (null for a transient cookie and 0 or less for a cookie that expires now)path
- Cookie pathpublic void setCookie(java.lang.String name, java.lang.String value, java.lang.Integer maxAge, java.lang.String path, java.lang.String domain)
name
- Cookie name. Must not be null.value
- Cookie valuemaxAge
- Cookie duration (null for a transient cookie and 0 or less for a cookie that expires now)path
- Cookie pathdomain
- Cookie domainpublic void setCookie(java.lang.String name, java.lang.String value, java.lang.Integer maxAge, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
name
- Cookie name. Must not be null.value
- Cookie valuemaxAge
- Cookie duration (null for a transient cookie and 0 or less for a cookie that expires now)path
- Cookie pathdomain
- Cookie domainsecure
- Whether the cookie is secured (for HTTPS requests)httpOnly
- Whether the cookie is HTTP only (i.e. not accessible from client-side JavaScript code)public void discardCookie(java.lang.String name)
name
- The name of the cookie to discard. Must not be null.public void discardCookie(java.lang.String name, java.lang.String path)
name
- The name of the cookie to discard. Must not be null.path
- The path of the cookie te discard, may be nullpublic void discardCookie(java.lang.String name, java.lang.String path, java.lang.String domain)
name
- The name of the cookie to discard. Must not be null.path
- The path of the cookie te discard, may be nulldomain
- The domain of the cookie to discard, may be nullpublic void discardCookie(java.lang.String name, java.lang.String path, java.lang.String domain, boolean secure)
name
- The name of the cookie to discard. Must not be null.path
- The path of the cookie te discard, may be nulldomain
- The domain of the cookie to discard, may be nullsecure
- Whether the cookie to discard is securepublic java.lang.Iterable<Http.Cookie> cookies()