org.apache.http.cookie
Interface ClientCookie
- All Superinterfaces:
- Cookie
- All Known Implementing Classes:
- BasicClientCookie, BasicClientCookie2
public interface ClientCookie
- extends Cookie
ClientCookie extends the standard Cookie
interface with
additional client specific functionality such ability to retrieve
original cookie attributes exactly as they were specified by the
origin server. This is important for generating the Cookie
header because some cookie specifications require that the
Cookie header should include certain attributes only if
they were specified in the Set-Cookie header.
- Since:
- 4.0
Methods inherited from interface org.apache.http.cookie.Cookie |
getComment, getCommentURL, getDomain, getExpiryDate, getName, getPath, getPorts, getValue, getVersion, isExpired, isPersistent, isSecure |
VERSION_ATTR
static final java.lang.String VERSION_ATTR
- See Also:
- Constant Field Values
PATH_ATTR
static final java.lang.String PATH_ATTR
- See Also:
- Constant Field Values
DOMAIN_ATTR
static final java.lang.String DOMAIN_ATTR
- See Also:
- Constant Field Values
MAX_AGE_ATTR
static final java.lang.String MAX_AGE_ATTR
- See Also:
- Constant Field Values
SECURE_ATTR
static final java.lang.String SECURE_ATTR
- See Also:
- Constant Field Values
COMMENT_ATTR
static final java.lang.String COMMENT_ATTR
- See Also:
- Constant Field Values
EXPIRES_ATTR
static final java.lang.String EXPIRES_ATTR
- See Also:
- Constant Field Values
PORT_ATTR
static final java.lang.String PORT_ATTR
- See Also:
- Constant Field Values
COMMENTURL_ATTR
static final java.lang.String COMMENTURL_ATTR
- See Also:
- Constant Field Values
DISCARD_ATTR
static final java.lang.String DISCARD_ATTR
- See Also:
- Constant Field Values
getAttribute
java.lang.String getAttribute(java.lang.String name)
containsAttribute
boolean containsAttribute(java.lang.String name)
Copyright © 1999-2011 The Apache Software Foundation. All Rights Reserved.