Uses of Class
jakarta.ws.rs.core.Cookie
-
Packages that use Cookie Package Description jakarta.ws.rs.client The JAX-RS client APIjakarta.ws.rs.container Container-specific JAX-RS API.jakarta.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources.org.jboss.resteasy.client.jaxrs.internal org.jboss.resteasy.core.interception.jaxrs org.jboss.resteasy.plugins.delegates org.jboss.resteasy.specimpl org.jboss.resteasy.util -
-
Uses of Cookie in jakarta.ws.rs.client
Methods in jakarta.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 jakarta.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 jakarta.ws.rs.container
Methods in jakarta.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 jakarta.ws.rs.core
Subclasses of Cookie in jakarta.ws.rs.core Modifier and Type Class Description classNewCookieUsed to create a new HTTP cookie, transferred in a response.Methods in jakarta.ws.rs.core that return Cookie Modifier and Type Method Description abstract CookieCookie.AbstractCookieBuilder. build()Build a newCookieinstance using all the configuration previously specified in this builder.CookieCookie.Builder. build()CookieNewCookie. toCookie()Obtain a new instance of aCookiewith the same name, value, path, domain and version as thisNewCookie.static CookieCookie. valueOf(String value)Deprecated.This method will be removed in a future version.Methods in jakarta.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 jakarta.ws.rs.core with parameters of type Cookie Constructor Description AbstractNewCookieBuilder(Cookie cookie)Create a new instance supplementing the information in the supplied cookie.Builder(Cookie cookie)Create a new instance supplementing the information in the supplied cookie.NewCookie(Cookie cookie)Deprecated.This constructor will be removed in a future version.NewCookie(Cookie cookie, String comment, int maxAge, boolean secure)Deprecated.This constructor will be removed in a future version.NewCookie(Cookie cookie, String comment, int maxAge, Date expiry, boolean secure, boolean httpOnly)Deprecated.This constructor will be removed in a future version.NewCookie(Cookie cookie, String comment, int maxAge, Date expiry, boolean secure, boolean httpOnly, NewCookie.SameSite sameSite)Deprecated.This constructor will be removed in a future version. -
Uses of Cookie in org.jboss.resteasy.client.jaxrs.internal
Methods in org.jboss.resteasy.client.jaxrs.internal that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>ClientRequestContextImpl. getCookies()Map<String,Cookie>ClientRequestHeaders. getCookies()Methods in org.jboss.resteasy.client.jaxrs.internal with parameters of type Cookie Modifier and Type Method Description Invocation.BuilderClientInvocationBuilder. cookie(Cookie cookie)voidClientRequestHeaders. cookie(Cookie cookie) -
Uses of Cookie in org.jboss.resteasy.core.interception.jaxrs
Methods in org.jboss.resteasy.core.interception.jaxrs that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>PreMatchContainerRequestContext. getCookies() -
Uses of Cookie in org.jboss.resteasy.plugins.delegates
Methods in org.jboss.resteasy.plugins.delegates that return Cookie Modifier and Type Method Description CookieCookieHeaderDelegate. fromString(String value)Methods in org.jboss.resteasy.plugins.delegates with parameters of type Cookie Modifier and Type Method Description StringCookieHeaderDelegate. toString(Cookie value) -
Uses of Cookie in org.jboss.resteasy.specimpl
Methods in org.jboss.resteasy.specimpl that return types with arguments of type Cookie Modifier and Type Method Description Map<String,Cookie>ResteasyHttpHeaders. getCookies()Map<String,Cookie>ResteasyHttpHeaders. getMutableCookies()Method parameters in org.jboss.resteasy.specimpl with type arguments of type Cookie Modifier and Type Method Description voidResteasyHttpHeaders. setCookies(Map<String,Cookie> cookies)Constructor parameters in org.jboss.resteasy.specimpl with type arguments of type Cookie Constructor Description ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders, Map<String,Cookie> cookies)ResteasyHttpHeaders(MultivaluedMap<String,String> requestHeaders, Map<String,Cookie> cookies, boolean eagerlyInitializeEntrySet) -
Uses of Cookie in org.jboss.resteasy.util
Methods in org.jboss.resteasy.util that return types with arguments of type Cookie Modifier and Type Method Description static List<Cookie>CookieParser. parseCookies(String cookieHeader)
-