Package org.apache.http.cookie.params
Interface CookieSpecPNames
-
- All Known Subinterfaces:
AllClientPNames
@Deprecated public interface CookieSpecPNames
Deprecated.(4.3) use constructor parameters ofCookieSpecProvider
s.Parameter names for HTTP cookie management classes.- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DATE_PATTERNS
Deprecated.Defines valid date patterns to be used for parsing non-standardexpires
attribute.static java.lang.String
SINGLE_COOKIE_HEADER
Deprecated.Defines whether cookies should be forced into a singleCookie
request header.
-
-
-
Field Detail
-
DATE_PATTERNS
static final java.lang.String DATE_PATTERNS
Deprecated.Defines valid date patterns to be used for parsing non-standardexpires
attribute. Only required for compatibility with non-compliant servers that still useexpires
defined in the Netscape draft instead of the standardmax-age
attribute.This parameter expects a value of type
Collection
. The collection elements must be of typeString
compatible with the syntax ofSimpleDateFormat
.- See Also:
- Constant Field Values
-
SINGLE_COOKIE_HEADER
static final java.lang.String SINGLE_COOKIE_HEADER
Deprecated.Defines whether cookies should be forced into a singleCookie
request header. Otherwise, each cookie is formatted as a separateCookie
header.This parameter expects a value of type
Boolean
.- See Also:
- Constant Field Values
-
-