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 CookieRequestHeader. getCookie(java.lang.String name)This is used to acquire a cookie using the name of that cookie.CookieRequestWrapper. getCookie(java.lang.String name)This is used to acquire a cookie usiing the name of that cookie.CookieResponseHeader. getCookie(java.lang.String name)This returns theCookieobject stored under the specified name.CookieResponseWrapper. getCookie(java.lang.String name)This returns theCookieobject stored under the specified name.CookieResponseHeader. setCookie(java.lang.String name, java.lang.String value)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieResponseHeader. setCookie(Cookie cookie)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieResponseWrapper. setCookie(java.lang.String name, java.lang.String value)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieResponseWrapper. setCookie(Cookie cookie)ThesetCookiemethod 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 allCookieobjects stored under the specified name.java.util.List<Cookie>ResponseWrapper. getCookies()This returns allCookieobjects stored under the specified name.Methods in org.simpleframework.http with parameters of type Cookie Modifier and Type Method Description CookieResponseHeader. setCookie(Cookie cookie)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieResponseWrapper. setCookie(Cookie cookie)ThesetCookiemethod 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 CookieHeader. getCookie(java.lang.String name)This is used to acquire a cookie usiing the name of that cookie.CookieHeaderConsumer. getCookie(java.lang.String name)This is used to acquire a cookie using the name of that cookie.CookieMessage. getCookie(java.lang.String name)This returns theCookieobject stored under the specified name.CookieMessageHeader. getCookie(java.lang.String name)This returns theCookieobject stored under the specified name.CookieMessage. setCookie(java.lang.String name, java.lang.String value)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieMessage. setCookie(Cookie cookie)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieMessageHeader. setCookie(java.lang.String name, java.lang.String value)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieMessageHeader. setCookie(Cookie cookie)ThesetCookiemethod 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 allCookieobjects stored under the specified name.java.util.List<Cookie>MessageHeader. getCookies()This returns allCookieobjects stored under the specified name.Methods in org.simpleframework.http.message with parameters of type Cookie Modifier and Type Method Description CookieMessage. setCookie(Cookie cookie)ThesetCookiemethod is used to set a cookie value with the cookie name.CookieMessageHeader. setCookie(Cookie cookie)ThesetCookiemethod 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.
-