org.jboss.netty.handler.codec.http
类 DefaultCookie

java.lang.Object
  继承者 org.jboss.netty.handler.codec.http.DefaultCookie
所有已实现的接口:
java.lang.Comparable<Cookie>, Cookie

public class DefaultCookie
extends java.lang.Object
implements Cookie

The default Cookie implementation.


构造方法摘要
DefaultCookie(java.lang.String name, java.lang.String value)
          Creates a new cookie with the specified name and value.
 
方法摘要
 int compareTo(Cookie c)
           
 boolean equals(java.lang.Object o)
           
 java.lang.String getComment()
          Returns the comment of this cookie.
 java.lang.String getCommentUrl()
          Returns the comment URL of this cookie.
 java.lang.String getDomain()
          Returns the domain of this cookie.
 int getMaxAge()
          Returns the max age of this cookie in seconds.
 java.lang.String getName()
          Returns the name of this cookie.
 java.lang.String getPath()
          Returns the path of this cookie.
 java.util.Set<java.lang.Integer> getPorts()
          Returns the ports of this cookie.
 java.lang.String getValue()
          Returns the value of this cookie.
 int getVersion()
          Returns the version of this cookie.
 int hashCode()
           
 boolean isDiscard()
          Returns the discard flag of this cookie.
 boolean isHttpOnly()
          Returns if this cookie cannot be accessed through client side script.
 boolean isSecure()
          Returns the secure flag of this cookie.
 void setComment(java.lang.String comment)
          Sets the comment of this cookie.
 void setCommentUrl(java.lang.String commentUrl)
          Sets the comment URL of this cookie.
 void setDiscard(boolean discard)
          Sets the discard flag of this cookie.
 void setDomain(java.lang.String domain)
          Sets the domain of this cookie.
 void setHttpOnly(boolean httpOnly)
          Sets if this cookie cannot be accessed through client side script.
 void setMaxAge(int maxAge)
          Sets the max age of this cookie in seconds.
 void setPath(java.lang.String path)
          Sets the path of this cookie.
 void setPorts(int... ports)
          Sets the ports of this cookie.
 void setPorts(java.lang.Iterable<java.lang.Integer> ports)
          Sets the ports of this cookie.
 void setSecure(boolean secure)
          Sets the secure flag of this cookie.
 void setValue(java.lang.String value)
          Sets the value of this cookie.
 void setVersion(int version)
          Sets the version of this cookie.
 java.lang.String toString()
           
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

DefaultCookie

public DefaultCookie(java.lang.String name,
                     java.lang.String value)
Creates a new cookie with the specified name and value.

方法详细信息

getName

public java.lang.String getName()
从接口 Cookie 复制的描述
Returns the name of this cookie.

指定者:
接口 Cookie 中的 getName

getValue

public java.lang.String getValue()
从接口 Cookie 复制的描述
Returns the value of this cookie.

指定者:
接口 Cookie 中的 getValue

setValue

public void setValue(java.lang.String value)
从接口 Cookie 复制的描述
Sets the value of this cookie.

指定者:
接口 Cookie 中的 setValue

getDomain

public java.lang.String getDomain()
从接口 Cookie 复制的描述
Returns the domain of this cookie.

指定者:
接口 Cookie 中的 getDomain

setDomain

public void setDomain(java.lang.String domain)
从接口 Cookie 复制的描述
Sets the domain of this cookie.

指定者:
接口 Cookie 中的 setDomain

getPath

public java.lang.String getPath()
从接口 Cookie 复制的描述
Returns the path of this cookie.

指定者:
接口 Cookie 中的 getPath

setPath

public void setPath(java.lang.String path)
从接口 Cookie 复制的描述
Sets the path of this cookie.

指定者:
接口 Cookie 中的 setPath

getComment

public java.lang.String getComment()
从接口 Cookie 复制的描述
Returns the comment of this cookie.

指定者:
接口 Cookie 中的 getComment

setComment

public void setComment(java.lang.String comment)
从接口 Cookie 复制的描述
Sets the comment of this cookie.

指定者:
接口 Cookie 中的 setComment

getCommentUrl

public java.lang.String getCommentUrl()
从接口 Cookie 复制的描述
Returns the comment URL of this cookie.

指定者:
接口 Cookie 中的 getCommentUrl

setCommentUrl

public void setCommentUrl(java.lang.String commentUrl)
从接口 Cookie 复制的描述
Sets the comment URL of this cookie.

指定者:
接口 Cookie 中的 setCommentUrl

isDiscard

public boolean isDiscard()
从接口 Cookie 复制的描述
Returns the discard flag of this cookie.

指定者:
接口 Cookie 中的 isDiscard

setDiscard

public void setDiscard(boolean discard)
从接口 Cookie 复制的描述
Sets the discard flag of this cookie.

指定者:
接口 Cookie 中的 setDiscard

getPorts

public java.util.Set<java.lang.Integer> getPorts()
从接口 Cookie 复制的描述
Returns the ports of this cookie.

指定者:
接口 Cookie 中的 getPorts

setPorts

public void setPorts(int... ports)
从接口 Cookie 复制的描述
Sets the ports of this cookie.

指定者:
接口 Cookie 中的 setPorts

setPorts

public void setPorts(java.lang.Iterable<java.lang.Integer> ports)
从接口 Cookie 复制的描述
Sets the ports of this cookie.

指定者:
接口 Cookie 中的 setPorts

getMaxAge

public int getMaxAge()
从接口 Cookie 复制的描述
Returns the max age of this cookie in seconds.

指定者:
接口 Cookie 中的 getMaxAge

setMaxAge

public void setMaxAge(int maxAge)
从接口 Cookie 复制的描述
Sets the max age of this cookie in seconds. If 0 is specified, this cookie will be removed by browser because it will be expired immediately. If -1 is specified, this cookie will be removed when a user terminates browser.

指定者:
接口 Cookie 中的 setMaxAge

getVersion

public int getVersion()
从接口 Cookie 复制的描述
Returns the version of this cookie.

指定者:
接口 Cookie 中的 getVersion

setVersion

public void setVersion(int version)
从接口 Cookie 复制的描述
Sets the version of this cookie.

指定者:
接口 Cookie 中的 setVersion

isSecure

public boolean isSecure()
从接口 Cookie 复制的描述
Returns the secure flag of this cookie.

指定者:
接口 Cookie 中的 isSecure

setSecure

public void setSecure(boolean secure)
从接口 Cookie 复制的描述
Sets the secure flag of this cookie.

指定者:
接口 Cookie 中的 setSecure

isHttpOnly

public boolean isHttpOnly()
从接口 Cookie 复制的描述
Returns if this cookie cannot be accessed through client side script. This flag works only if the browser supports it. For more information, see here.

指定者:
接口 Cookie 中的 isHttpOnly

setHttpOnly

public void setHttpOnly(boolean httpOnly)
从接口 Cookie 复制的描述
Sets if this cookie cannot be accessed through client side script. This flag works only if the browser supports it. For more information, see here.

指定者:
接口 Cookie 中的 setHttpOnly

hashCode

public int hashCode()
覆盖:
java.lang.Object 中的 hashCode

equals

public boolean equals(java.lang.Object o)
覆盖:
java.lang.Object 中的 equals

compareTo

public int compareTo(Cookie c)
指定者:
接口 java.lang.Comparable<Cookie> 中的 compareTo

toString

public java.lang.String toString()
覆盖:
java.lang.Object 中的 toString