Uses of Class
javax.ws.rs.core.Cookie
-
Packages that use Cookie Package Description javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. -
-
Uses of Cookie in javax.ws.rs.core
Subclasses of Cookie in javax.ws.rs.core Modifier and Type Class Description class
NewCookie
Used to create a new HTTP cookie, transferred in a response.Fields in javax.ws.rs.core with type parameters of type Cookie Modifier and Type Field Description private static RuntimeDelegate.HeaderDelegate<Cookie>
Cookie. delegate
Methods in javax.ws.rs.core that return Cookie Modifier and Type Method Description Cookie
NewCookie. toCookie()
Obtain a new instance of aCookie
with the same name, value, path, domain and version as thisNewCookie
.static Cookie
Cookie. valueOf(java.lang.String value)
Creates a new instance of Cookie by parsing the supplied string.Methods in javax.ws.rs.core that return types with arguments of type Cookie Modifier and Type Method Description java.util.Map<java.lang.String,Cookie>
HttpHeaders. getCookies()
Get any cookies that accompanied the request.Constructors in javax.ws.rs.core with parameters of type Cookie Constructor Description NewCookie(Cookie cookie)
Create a new instance copying the information in the supplied cookie.NewCookie(Cookie cookie, java.lang.String comment, int maxAge, boolean secure)
Create a new instance supplementing the information in the supplied cookie.
-