Package com.ibm.ws.javaee.dd.web.common
Interface CookieConfig
-
public interface CookieConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getComment()
java.lang.String
getDomain()
int
getMaxAge()
java.lang.String
getName()
java.lang.String
getPath()
boolean
isHTTPOnly()
boolean
isSecure()
boolean
isSetHTTPOnly()
boolean
isSetMaxAge()
boolean
isSetSecure()
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- <name>, or null if unspecified
-
getDomain
java.lang.String getDomain()
- Returns:
- <domain>, or null if unspecified
-
getPath
java.lang.String getPath()
- Returns:
- <path>, or null if unspecified
-
getComment
java.lang.String getComment()
- Returns:
- <comment>, or null if unspecified
-
isSetHTTPOnly
boolean isSetHTTPOnly()
- Returns:
- true if <http-only> is specified
- See Also:
isHTTPOnly()
-
isHTTPOnly
boolean isHTTPOnly()
- Returns:
- <http-only> if specified
- See Also:
isSetHTTPOnly()
-
isSetSecure
boolean isSetSecure()
- Returns:
- true if <secure> is specified
- See Also:
isSecure()
-
isSecure
boolean isSecure()
- Returns:
- <secure> if specified
- See Also:
isSetSecure()
-
isSetMaxAge
boolean isSetMaxAge()
- Returns:
- true if <max-age> is specified
- See Also:
getMaxAge()
-
getMaxAge
int getMaxAge()
- Returns:
- <max-age> if specified
- See Also:
isSetMaxAge()
-
-