Cookie
。
@Deprecated public interface Cookie extends Cookie
UNDEFINED_MAX_AGE
Modifier and Type | Method and Description |
---|---|
java.lang.String |
comment()
已过时。
不是RFC6265的一部分
|
java.lang.String |
commentUrl()
已过时。
不是RFC6265的一部分
|
java.lang.String |
getComment()
已过时。
改为使用
comment() 。
|
java.lang.String |
getCommentUrl()
已过时。
改为使用
commentUrl() 。
|
java.lang.String |
getDomain()
已过时。
改为使用
Cookie.domain() 。
|
long |
getMaxAge()
已过时。
改为使用
maxAge() 。
|
java.lang.String |
getName()
已过时。
改为使用
Cookie.name() 。
|
java.lang.String |
getPath()
已过时。
改为使用
Cookie.path() 。
|
java.util.Set<java.lang.Integer> |
getPorts()
已过时。
改为使用
ports() 。
|
java.lang.String |
getValue()
已过时。
改为使用
Cookie.value() 。
|
int |
getVersion()
已过时。
改为使用
version() 。
|
boolean |
isDiscard()
已过时。
不是RFC6265的一部分
|
long |
maxAge()
已过时。
不是RFC6265的一部分
|
java.util.Set<java.lang.Integer> |
ports()
已过时。
不是RFC6265的一部分
|
void |
setComment(java.lang.String comment)
已过时。
不是RFC6265的一部分
|
void |
setCommentUrl(java.lang.String commentUrl)
已过时。
不是RFC6265的一部分
|
void |
setDiscard(boolean discard)
已过时。
不是RFC6265的一部分
|
void |
setMaxAge(long maxAge)
已过时。
不是RFC6265的一部分
|
void |
setPorts(int... ports)
已过时。
不是RFC6265的一部分
|
void |
setPorts(java.lang.Iterable<java.lang.Integer> ports)
已过时。
不是RFC6265的一部分
|
void |
setVersion(int version)
已过时。
不是RFC6265的一部分
|
int |
version()
已过时。
不是RFC6265的一部分
|
@Deprecated java.lang.String getName()
Cookie.name()
。
@Deprecated java.lang.String getValue()
Cookie.value()
。
@Deprecated java.lang.String getDomain()
Cookie.domain()
。
@Deprecated java.lang.String getPath()
Cookie.path()
。
@Deprecated java.lang.String getComment()
comment()
。
@Deprecated void setComment(java.lang.String comment)
Cookie
的评论。
comment
- 要使用的评论
@Deprecated long getMaxAge()
maxAge()
。
@Deprecated long maxAge()
Cookie
的最大年龄(以秒为单位)或Long.MIN_VALUE
如果未指定)
@Deprecated void setMaxAge(long maxAge)
@Deprecated int getVersion()
version()
。
@Deprecated void setVersion(int version)
Cookie
的版本。
version
- 要使用的新版本
@Deprecated java.lang.String getCommentUrl()
commentUrl()
。
@Deprecated java.lang.String commentUrl()
Cookie
的评论网址。
Cookie
的评论网址
@Deprecated void setCommentUrl(java.lang.String commentUrl)
Cookie
的评论URL。
commentUrl
- 要使用的评论URL
@Deprecated boolean isDiscard()
Cookie
是否在当前会话结束时被浏览器丢弃。
@Deprecated void setDiscard(boolean discard)
discard
- 如果要丢弃Cookie
,则返回true
@Deprecated java.util.Set<java.lang.Integer> getPorts()
ports()
。
@Deprecated java.util.Set<java.lang.Integer> ports()
Cookie
的端口。
Set
这个端口Cookie
可以使用
@Deprecated void setPorts(int... ports)
Cookie
的端口。
ports
- 可以访问此Cookie
的端口
Copyright © 2008–2018 The Netty Project. All rights reserved.