Package com.ibm.security.access.policy
Interface Cookie
- 
 public interface CookieThis interface represents a cookie.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetComment()Get the comment.java.lang.StringgetDomain()Get the domain.intgetMaxAge()Get the maximum age (in seconds).java.lang.StringgetName()Get the name.java.lang.StringgetPath()Get the path.java.lang.StringgetValue()Get the value.intgetVersion()Get the version.booleanisHttpOnly()Get the HttpOnly flag.booleanisSecure()Check the secure flag.
 
- 
- 
- 
Method Detail- 
getCommentjava.lang.String getComment() Get the comment.- Returns:
- The comment.
 
 - 
getDomainjava.lang.String getDomain() Get the domain.- Returns:
- The domain.
 
 - 
isHttpOnlyboolean isHttpOnly() Get the HttpOnly flag.- Returns:
- The HttpOnly flag.
 
 - 
getMaxAgeint getMaxAge() Get the maximum age (in seconds).- Returns:
- The maximum age.
 
 - 
getNamejava.lang.String getName() Get the name.- Returns:
- The name.
 
 - 
getPathjava.lang.String getPath() Get the path.- Returns:
- The path.
 
 - 
isSecureboolean isSecure() Check the secure flag.- Returns:
- The secure flag.
 
 - 
getValuejava.lang.String getValue() Get the value.- Returns:
- The value.
 
 - 
getVersionint getVersion() Get the version.- Returns:
- The version.
 
 
- 
 
-