| java.lang.Object | |
| ↳ | com.google.gdata.client.http.GoogleGDataRequest.GoogleCookie |
Google cookie.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| domain | |||||||||||
| expires | |||||||||||
| name | |||||||||||
| path | |||||||||||
| value | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new GoogleCookie instance.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns
true if the target object is a GoogleCookie that
has the same name as this cookie and that matches the same target
domain and path as this cookie. | |||||||||||
Returns
true if the cookie has expired. | |||||||||||
Returns
true if the cookie hasn't expired, the
URI domain matches, and the URI path starts with the
cookie path. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Constructs a new GoogleCookie instance.
| uri | The original request URI that returned Set-Cookie header in the response |
|---|---|
| cookieHeader | The value of the Set-Cookie header. |
Returns true if the target object is a GoogleCookie that
has the same name as this cookie and that matches the same target
domain and path as this cookie. Cookie expiration and value
are not taken into account when considering equivalence.
| o |
|---|
Returns true if the cookie has expired.
Returns true if the cookie hasn't expired, the
URI domain matches, and the URI path starts with the
cookie path.
| uri | URI to check against |
|---|