Package com.ibm.wsspi.http
Class HttpCookie
- java.lang.Object
- 
- com.ibm.wsspi.http.HttpCookie
 
- 
 public class HttpCookie extends java.lang.ObjectHTTP cookie object, similar to the J2EE servlet cookie object.
- 
- 
Constructor SummaryConstructors Constructor Description HttpCookie(java.lang.String name, java.lang.String value)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description HttpCookieclone()java.lang.StringgetAttribute(java.lang.String name)Query a generic attribute of this cookie.java.lang.StringgetComment()Query the comment attribute of this cookie.java.lang.StringgetDomain()Query the domain attribute of this cookie.intgetMaxAge()Query the max-age attribute of this cookie.java.lang.StringgetName()Query the name of this cookie.java.lang.StringgetPath()Query the path attribute of this cookie.java.lang.StringgetValue()Query the value of this cookie.intgetVersion()Query the version attribute of this cookie.booleanisDiscard()Query if the Discard attribute is set.booleanisHttpOnly()Query if the HttpOnly attribute is set.booleanisSecure()Query the secure-flag attribute of this cookie.voidsetAttribute(java.lang.String name, java.lang.String value)Set a generic attribute on this cookie.voidsetComment(java.lang.String comment)Set the comment attribute of this cookie.voidsetDiscard(boolean flag)Set the Discard attribute flag.voidsetDomain(java.lang.String domain)Set the domain attribute of this cookie.voidsetHttpOnly(boolean flag)Set the HttpOnly special attribute flag.voidsetMaxAge(int age)Set the max-age attribute of this cookie.voidsetPath(java.lang.String path)Set the path attribute of this cookie.voidsetSecure(boolean flag)Set the secure-flag attribute of this cookie.voidsetVersion(int version)Set the version attribute of this cookie to the input value.
 
- 
- 
- 
Method Detail- 
getNamepublic java.lang.String getName() Query the name of this cookie.- Returns:
- String
 
 - 
getValuepublic java.lang.String getValue() Query the value of this cookie. This might be null, an empty string, or a full valid string.- Returns:
- String
 
 - 
getCommentpublic java.lang.String getComment() Query the comment attribute of this cookie.- Returns:
- String
 
 - 
getPathpublic java.lang.String getPath() Query the path attribute of this cookie.- Returns:
- String
 
 - 
getDomainpublic java.lang.String getDomain() Query the domain attribute of this cookie.- Returns:
- String
 
 - 
isSecurepublic boolean isSecure() Query the secure-flag attribute of this cookie.- Returns:
- String
 
 - 
getMaxAgepublic int getMaxAge() Query the max-age attribute of this cookie.- Returns:
- String
 
 - 
setAttributepublic void setAttribute(java.lang.String name, java.lang.String value)Set a generic attribute on this cookie.- Parameters:
- name-
- value-
 
 - 
getAttributepublic java.lang.String getAttribute(java.lang.String name) Query a generic attribute of this cookie.- Parameters:
- name-
- Returns:
- String
 
 - 
getVersionpublic int getVersion() Query the version attribute of this cookie.- Returns:
- int
 
 - 
setVersionpublic void setVersion(int version) Set the version attribute of this cookie to the input value. Valid options include 0 and 1 only.- Parameters:
- version-
 
 - 
setCommentpublic void setComment(java.lang.String comment) Set the comment attribute of this cookie.- Parameters:
- comment-
 
 - 
setDomainpublic void setDomain(java.lang.String domain) Set the domain attribute of this cookie.- Parameters:
- domain-
 
 - 
setPathpublic void setPath(java.lang.String path) Set the path attribute of this cookie.- Parameters:
- path-
 
 - 
setSecurepublic void setSecure(boolean flag) Set the secure-flag attribute of this cookie.- Parameters:
- flag-
 
 - 
setMaxAgepublic void setMaxAge(int age) Set the max-age attribute of this cookie.- Parameters:
- age-
 
 - 
isHttpOnlypublic boolean isHttpOnly() Query if the HttpOnly attribute is set.- Returns:
- boolean
 
 - 
setHttpOnlypublic void setHttpOnly(boolean flag) Set the HttpOnly special attribute flag.- Parameters:
- flag-
 
 - 
isDiscardpublic boolean isDiscard() Query if the Discard attribute is set.- Returns:
- boolean
 
 - 
setDiscardpublic void setDiscard(boolean flag) Set the Discard attribute flag.- Parameters:
- flag-
 
 - 
clonepublic HttpCookie clone() 
 
- 
 
-