|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--HTTPClient.Cookie
This class represents an http cookie as specified in Netscape's cookie spec; however, because not even Netscape follows their own spec, and because very few folks out there actually read specs but instead just look whether Netscape accepts their stuff, the Set-Cookie header field parser actually tries to follow what Netscape has implemented, instead of what the spec says. Additionally, the parser it will also recognize the Max-Age parameter from rfc-2109, as that uses the same header field (Set-Cookie).
Some notes about how Netscape (4.7) parses:
Field Summary | |
protected String |
domain
|
protected Date |
expires
|
protected String |
name
|
protected String |
path
|
protected boolean |
secure
|
protected String |
value
|
Constructor Summary | |
protected |
Cookie(RoRequest req)
Use parse() to create cookies. |
|
Cookie(String name,
String value,
String domain,
String path,
Date expires,
boolean secure)
Create a cookie. |
Method Summary | |
boolean |
discard()
|
boolean |
equals(Object obj)
Two cookies match if the name, path and domain match. |
Date |
expires()
|
String |
getDomain()
Return the domain this cookie is valid in. |
String |
getName()
Return the name of this cookie. |
String |
getPath()
Return the path this cookie is associated with. |
String |
getValue()
Return the value of this cookie. |
boolean |
hasExpired()
|
int |
hashCode()
Hash up name, path and domain into new hash. |
boolean |
isSecure()
Return whether this cookie should only be sent over secure connections. |
protected static Cookie[] |
parse(String set_cookie,
RoRequest req)
Parses the Set-Cookie header into an array of Cookies. |
protected boolean |
sendWith(RoRequest req)
|
protected String |
toExternalForm()
|
String |
toString()
Create a string containing all the cookie fields. |
Methods inherited from class java.lang.Object |
clone,
finalize,
getClass,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
protected String name
protected String value
protected Date expires
protected String domain
protected String path
protected boolean secure
Constructor Detail |
public Cookie(String name, String value, String domain, String path, Date expires, boolean secure)
name
- the cookie namevalue
- the cookie valuedomain
- the host this cookie will be sent topath
- the path prefix for which this cookie will be sentepxires
- the Date this cookie expires, null if at end of
sessionsecure
- if true this cookie will only be over secure connectionsprotected Cookie(RoRequest req)
parse()
to create cookies.parse(java.lang.String, HTTPClient.RoRequest)
Method Detail |
protected static Cookie[] parse(String set_cookie, RoRequest req) throws ProtocolException
set_cookie
- the Set-Cookie header received from the serverreq
- the request usedpublic String getName()
public String getValue()
public Date expires()
public boolean discard()
public String getDomain()
public String getPath()
public boolean isSecure()
public boolean hasExpired()
protected boolean sendWith(RoRequest req)
req
- the request to be sentpublic int hashCode()
public boolean equals(Object obj)
protected String toExternalForm()
public String toString()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |