Package org.forgerock.http.header
Class SetCookie2Header
java.lang.Object
org.forgerock.http.protocol.Header
org.forgerock.http.header.AbstractSetCookieHeader
org.forgerock.http.header.SetCookie2Header
@Deprecated(forRemoval=true,
since="26.2.0")
public class SetCookie2Header
extends AbstractSetCookieHeader
Deprecated, for removal: This API element is subject to removal in a future version.
Processes the
Set-Cookie2
request message header, defined in
RFC 2965. Note thatSet-Cookie2
is obsolete by RFC 6265. Although it may still work in some browsers, its use is discouraged.
Use Set-Cookie
instead.-
Field Summary
-
Constructor Summary
ConstructorDescriptionSetCookie2Header
(List<Cookie> cookies) Deprecated, for removal: This API element is subject to removal in a future version.Constructs a newSet-Cookie2
with the provided cookies. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Returns the unmodifiable list of cookies.getName()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the name of the header, as it would canonically appear within an HTTP message.Deprecated, for removal: This API element is subject to removal in a future version.Returns the header as a list of strings.static SetCookie2Header
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified string value.static SetCookie2Header
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified list ofSet-Cookie2
values.static SetCookie2Header
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified response message.Methods inherited from class org.forgerock.http.protocol.Header
equals, getFirstValue, hashCode, toString
-
Field Details
-
NAME
Deprecated, for removal: This API element is subject to removal in a future version.The name of this header.- See Also:
-
-
Constructor Details
-
SetCookie2Header
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a newSet-Cookie2
with the provided cookies.- Parameters:
cookies
- The cookies.
-
-
Method Details
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified string value. Note that multiple cookies could be set in a string.- Parameters:
value
- The value to initialize the header from.- Returns:
- The parsed header.
- Throws:
MalformedHeaderException
- If the header is malformed.
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified response message.- Parameters:
response
- The response message to initialize the header from.- Returns:
- The parsed header.
- Throws:
MalformedHeaderException
- If the header is malformed.
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified list ofSet-Cookie2
values. Note that the values could contain multiple cookies in a string.- Parameters:
values
- The values to initialize the header from.- Returns:
- The parsed header.
- Throws:
MalformedHeaderException
- If the header is malformed.
-
getName
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:Header
Returns the name of the header, as it would canonically appear within an HTTP message. -
getValues
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:Header
Returns the header as a list of strings. If the header has no values then it must return an empty list, never null. EachString
should represent the value component of the key-value pair that makes up the HTTP header - as such, for someHeader
implementations each String in thisList
may contain multiple token-separated values.The
List
returned from this method should not be expected to be mutable. However, some subclasses ofHeader
may choose to implement it as such. -
getCookies
Deprecated, for removal: This API element is subject to removal in a future version.Returns the unmodifiable list of cookies.- Specified by:
getCookies
in classAbstractSetCookieHeader
- Returns:
- The unmodifiable list of cookies.
-
SetCookieHeader
instead.