Uses of Interface
org.wildfly.security.http.HttpServerCookie
-
Packages that use HttpServerCookie Package Description org.wildfly.security.http Package containing the HTTP based authentication APIs, SPIs and related classes. -
-
Uses of HttpServerCookie in org.wildfly.security.http
Methods in org.wildfly.security.http that return HttpServerCookie Modifier and Type Method Description static HttpServerCookieHttpServerCookie. getInstance(String name, String value, String domain, int maxAge, String path, boolean secure, int version, boolean httpOnly)Returns a new instance representingHttpServerCookieMethods in org.wildfly.security.http that return types with arguments of type HttpServerCookie Modifier and Type Method Description List<HttpServerCookie>HttpExchangeSpi. getCookies()Returns aListcontaining all of theHttpServerCookieobjects the client sent with this request.List<HttpServerCookie>HttpServerRequest. getCookies()Returns aListcontaining all of theHttpServerCookieobjects the client sent with this request, or an emptyListif no cookies were included in the request.List<HttpServerCookie>HttpServerRequestWrapper. getCookies()Methods in org.wildfly.security.http with parameters of type HttpServerCookie Modifier and Type Method Description voidHttpExchangeSpi. setResponseCookie(HttpServerCookie cookie)Sets a response cookie.voidHttpServerResponse. setResponseCookie(HttpServerCookie cookie)Sets a response cookie
-