Package com.ibm.security.access.policy
Interface Cookie
-
public interface CookieThis interface represents a cookie.
-
-
Method Summary
All 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
-
getComment
java.lang.String getComment()
Get the comment.- Returns:
- The comment.
-
getDomain
java.lang.String getDomain()
Get the domain.- Returns:
- The domain.
-
isHttpOnly
boolean isHttpOnly()
Get the HttpOnly flag.- Returns:
- The HttpOnly flag.
-
getMaxAge
int getMaxAge()
Get the maximum age (in seconds).- Returns:
- The maximum age.
-
getName
java.lang.String getName()
Get the name.- Returns:
- The name.
-
getPath
java.lang.String getPath()
Get the path.- Returns:
- The path.
-
isSecure
boolean isSecure()
Check the secure flag.- Returns:
- The secure flag.
-
getValue
java.lang.String getValue()
Get the value.- Returns:
- The value.
-
getVersion
int getVersion()
Get the version.- Returns:
- The version.
-
-