Package com.ibm.ws.javaee.dd.web.common
Interface CookieConfig
- 
 public interface CookieConfig
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetComment()java.lang.StringgetDomain()intgetMaxAge()java.lang.StringgetName()java.lang.StringgetPath()booleanisHTTPOnly()booleanisSecure()booleanisSetHTTPOnly()booleanisSetMaxAge()booleanisSetSecure()
 
- 
- 
- 
Method Detail- 
getNamejava.lang.String getName() - Returns:
- <name>, or null if unspecified
 
 - 
getDomainjava.lang.String getDomain() - Returns:
- <domain>, or null if unspecified
 
 - 
getPathjava.lang.String getPath() - Returns:
- <path>, or null if unspecified
 
 - 
getCommentjava.lang.String getComment() - Returns:
- <comment>, or null if unspecified
 
 - 
isSetHTTPOnlyboolean isSetHTTPOnly() - Returns:
- true if <http-only> is specified
- See Also:
- isHTTPOnly()
 
 - 
isHTTPOnlyboolean isHTTPOnly() - Returns:
- <http-only> if specified
- See Also:
- isSetHTTPOnly()
 
 - 
isSetSecureboolean isSetSecure() - Returns:
- true if <secure> is specified
- See Also:
- isSecure()
 
 - 
isSecureboolean isSecure() - Returns:
- <secure> if specified
- See Also:
- isSetSecure()
 
 - 
isSetMaxAgeboolean isSetMaxAge() - Returns:
- true if <max-age> is specified
- See Also:
- getMaxAge()
 
 - 
getMaxAgeint getMaxAge() - Returns:
- <max-age> if specified
- See Also:
- isSetMaxAge()
 
 
- 
 
-