Result
instead which has methods to add headers and cookies.@Deprecated 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_SECURITY_POLICY, CONTENT_SECURITY_POLICY_REPORT_ONLY, 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, LINK, LOCATION, MAX_FORWARDS, ORIGIN, PRAGMA, PROXY_AUTHENTICATE, PROXY_AUTHORIZATION, RANGE, REFERER, REFERRER_POLICY, RETRY_AFTER, SERVER, SET_COOKIE, SET_COOKIE2, STRICT_TRANSPORT_SECURITY, TE, TRAILER, TRANSFER_ENCODING, UPGRADE, USER_AGENT, VARY, VIA, WARNING, WWW_AUTHENTICATE, X_CONTENT_SECURITY_POLICY_NONCE_HEADER, X_CONTENT_TYPE_OPTIONS, X_FORWARDED_FOR, X_FORWARDED_HOST, X_FORWARDED_PORT, X_FORWARDED_PROTO, X_FRAME_OPTIONS, X_PERMITTED_CROSS_DOMAIN_POLICIES, X_REQUESTED_WITH, X_XSS_PROTECTION
Constructor and Description |
---|
Response()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.Optional<Http.Cookie> |
cookie(java.lang.String name)
Deprecated.
|
java.util.Collection<Http.Cookie> |
cookies()
Deprecated.
|
void |
discardCookie(java.lang.String name)
Deprecated.
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)
Deprecated.
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)
Deprecated.
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)
Deprecated.
Discard a cookie in this result
|
java.util.Map<java.lang.String,java.lang.String> |
getHeaders()
Deprecated.
Gets the current response headers.
|
void |
setCookie(Http.Cookie cookie)
Deprecated.
Set a new cookie.
|
void |
setHeader(java.lang.String name,
java.lang.String value)
Deprecated.
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 nullvalue
- The value of the header, must not be nullpublic java.util.Map<java.lang.String,java.lang.String> getHeaders()
public void setCookie(Http.Cookie cookie)
cookie
- to setpublic void discardCookie(java.lang.String name)
name
- The name of the cookie to discard, must not be nullpublic void discardCookie(java.lang.String name, java.lang.String path)
name
- The name of the cookie to discard, must not be nullpath
- 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 nullpath
- 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 nullpath
- 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.util.Collection<Http.Cookie> cookies()
public java.util.Optional<Http.Cookie> cookie(java.lang.String name)