Uses of Class
org.simpleframework.http.Cookie
-
Packages that use Cookie Package Description org.simpleframework.http org.simpleframework.http.message org.simpleframework.http.parse -
-
Uses of Cookie in org.simpleframework.http
Methods in org.simpleframework.http that return Cookie Modifier and Type Method Description Cookie
RequestHeader. getCookie(java.lang.String name)
This is used to acquire a cookie using the name of that cookie.Cookie
RequestWrapper. getCookie(java.lang.String name)
This is used to acquire a cookie usiing the name of that cookie.Cookie
ResponseHeader. getCookie(java.lang.String name)
This returns theCookie
object stored under the specified name.Cookie
ResponseWrapper. getCookie(java.lang.String name)
This returns theCookie
object stored under the specified name.Cookie
ResponseHeader. setCookie(java.lang.String name, java.lang.String value)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
ResponseHeader. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
ResponseWrapper. setCookie(java.lang.String name, java.lang.String value)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
ResponseWrapper. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name.Methods in org.simpleframework.http that return types with arguments of type Cookie Modifier and Type Method Description java.util.List<Cookie>
RequestHeader. getCookies()
This is used to acquire all cookies that were sent in the header.java.util.List<Cookie>
RequestWrapper. getCookies()
This is used to acquire all cookies that were sent in the header.java.util.List<Cookie>
ResponseHeader. getCookies()
This returns allCookie
objects stored under the specified name.java.util.List<Cookie>
ResponseWrapper. getCookies()
This returns allCookie
objects stored under the specified name.Methods in org.simpleframework.http with parameters of type Cookie Modifier and Type Method Description Cookie
ResponseHeader. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
ResponseWrapper. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name. -
Uses of Cookie in org.simpleframework.http.message
Methods in org.simpleframework.http.message that return Cookie Modifier and Type Method Description Cookie
Header. getCookie(java.lang.String name)
This is used to acquire a cookie usiing the name of that cookie.Cookie
HeaderConsumer. getCookie(java.lang.String name)
This is used to acquire a cookie using the name of that cookie.Cookie
Message. getCookie(java.lang.String name)
This returns theCookie
object stored under the specified name.Cookie
MessageHeader. getCookie(java.lang.String name)
This returns theCookie
object stored under the specified name.Cookie
Message. setCookie(java.lang.String name, java.lang.String value)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
Message. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
MessageHeader. setCookie(java.lang.String name, java.lang.String value)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
MessageHeader. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name.Methods in org.simpleframework.http.message that return types with arguments of type Cookie Modifier and Type Method Description java.util.List<Cookie>
Header. getCookies()
This is used to acquire all cookies that were sent in the header.java.util.List<Cookie>
HeaderConsumer. getCookies()
This is used to acquire all cookies that were sent in the header.java.util.List<Cookie>
Message. getCookies()
This returns allCookie
objects stored under the specified name.java.util.List<Cookie>
MessageHeader. getCookies()
This returns allCookie
objects stored under the specified name.Methods in org.simpleframework.http.message with parameters of type Cookie Modifier and Type Method Description Cookie
Message. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name.Cookie
MessageHeader. setCookie(Cookie cookie)
ThesetCookie
method is used to set a cookie value with the cookie name. -
Uses of Cookie in org.simpleframework.http.parse
Methods in org.simpleframework.http.parse that return types with arguments of type Cookie Modifier and Type Method Description java.util.Iterator<Cookie>
CookieParser. iterator()
This is used to acquire the cookie values from the provided the provided source text.
-