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.This header is no longer supported by browsers. UseSetCookieHeader
instead.Processes theSet-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. UseSet-Cookie
instead.
-
-
Constructor Summary
Constructors Constructor Description SetCookie2Header(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
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description List<Cookie>
getCookies()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the unmodifiable list of cookies.String
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.List<String>
getValues()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the header as a list of strings.static SetCookie2Header
valueOf(String value)
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
valueOf(List<String> values)
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
valueOf(Response response)
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 Detail
-
NAME
public static final String NAME
Deprecated, for removal: This API element is subject to removal in a future version.The name of this header.- See Also:
- Constant Field Values
-
-
Method Detail
-
valueOf
public static SetCookie2Header valueOf(String value) throws MalformedHeaderException
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
public static SetCookie2Header valueOf(Response response) throws MalformedHeaderException
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
public static SetCookie2Header valueOf(List<String> values) throws MalformedHeaderException
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
public String 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
public List<String> 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
public List<Cookie> 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.
-
-