Package com.ibm.security.access.policy
Interface Cookie
-
public interface Cookie
This interface represents a cookie.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getComment()
Get the comment.java.lang.String
getDomain()
Get the domain.int
getMaxAge()
Get the maximum age (in seconds).java.lang.String
getName()
Get the name.java.lang.String
getPath()
Get the path.java.lang.String
getValue()
Get the value.int
getVersion()
Get the version.boolean
isHttpOnly()
Get the HttpOnly flag.boolean
isSecure()
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.
-
-