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
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSetCookie2Header(List<Cookie> cookies) Deprecated, for removal: This API element is subject to removal in a future version.Constructs a newSet-Cookie2with 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 SetCookie2HeaderDeprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified string value.static SetCookie2HeaderDeprecated, for removal: This API element is subject to removal in a future version.Constructs a new header, initialized from the specified list ofSet-Cookie2values.static SetCookie2HeaderDeprecated, 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-Cookie2with 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-Cookie2values. 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:HeaderReturns 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:HeaderReturns the header as a list of strings. If the header has no values then it must return an empty list, never null. EachStringshould represent the value component of the key-value pair that makes up the HTTP header - as such, for someHeaderimplementations each String in thisListmay contain multiple token-separated values.The
Listreturned from this method should not be expected to be mutable. However, some subclasses ofHeadermay 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:
getCookiesin classAbstractSetCookieHeader- Returns:
- the unmodifiable list of cookies
-
SetCookieHeaderinstead.