Uses of Class
javax.ws.rs.core.Cookie
-
Packages that use Cookie Package Description javax.ws.rs.client The Client APIjavax.ws.rs.container Container-specific API.javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. -
-
Uses of Cookie in javax.ws.rs.client
Methods in javax.ws.rs.client that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>ClientRequestContext. getCookies()Get any cookies that accompanied the request.Methods in javax.ws.rs.client with parameters of type Cookie Modifier and Type Method Description Invocation.BuilderInvocation.Builder. cookie(Cookie cookie)Add a cookie to be set. -
Uses of Cookie in javax.ws.rs.container
Methods in javax.ws.rs.container that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>ContainerRequestContext. getCookies()Get any cookies that accompanied the request. -
Uses of Cookie in javax.ws.rs.core
Subclasses of Cookie in javax.ws.rs.core Modifier and Type Class Description classNewCookieUsed to create a new HTTP cookie, transferred in a response.Methods in javax.ws.rs.core that return Cookie Modifier and Type Method Description CookieNewCookie. toCookie()Obtain a new instance of aCookiewith the same name, value, path, domain and version as thisNewCookie.static CookieCookie. valueOf(String value)Creates a new instance ofCookieby parsing the supplied string.Methods in javax.ws.rs.core that return types with arguments of type Cookie Modifier and Type Method Description Map<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, String comment, int maxAge, boolean secure)Create a new instance supplementing the information in the supplied cookie.NewCookie(Cookie cookie, String comment, int maxAge, Date expiry, boolean secure, boolean httpOnly)Create a new instance supplementing the information in the supplied cookie.
-