public interface ICookie
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDomain()
This method is used to retrieve the domain for which the cookie is in
scope.
|
java.util.Date |
getExpiration()
This method is used to retrieve the expiration time for the cookie.
|
java.lang.String |
getName()
This method is used to retrieve the name of the cookie.
|
java.lang.String |
getPath()
This method is used to retrieve the path for which the cookie is in
scope.
|
java.lang.String |
getValue()
This method is used to retrieve the value of the cookie.
|
java.lang.String getDomain()
IExtensionHelpers.analyzeResponse()
and then
IResponseInfo.getCookies()
, the domain will be
null
if the response did not explicitly set a domain
attribute for the cookie.java.lang.String getPath()
java.util.Date getExpiration()
null
if none is set (i.e., for non-persistent session
cookies).java.lang.String getName()
java.lang.String getValue()