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.org.wildfly.security.http.impl Implementation classes which do not form part of the public API.org.wildfly.security.http.util Package containing utility classes for HTTP authentication, predominantly special factory wrappers.org.wildfly.security.http.util.sso -
-
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 voidHttpAuthenticator.AuthenticationExchange. setResponseCookie(HttpServerCookie cookie)voidHttpExchangeSpi. setResponseCookie(HttpServerCookie cookie)Sets a response cookie.voidHttpServerResponse. setResponseCookie(HttpServerCookie cookie)Sets a response cookie -
Uses of HttpServerCookie in org.wildfly.security.http.impl
Methods in org.wildfly.security.http.impl that return types with arguments of type HttpServerCookie Modifier and Type Method Description List<HttpServerCookie>BaseHttpServerRequest. getCookies() -
Uses of HttpServerCookie in org.wildfly.security.http.util
Classes in org.wildfly.security.http.util that implement HttpServerCookie Modifier and Type Class Description classSimpleHttpServerCookieA simple implementation ofHttpServerCookie.Methods in org.wildfly.security.http.util that return HttpServerCookie Modifier and Type Method Description static HttpServerCookieSimpleHttpServerCookie. newInstance(String name, String value, String domain, int maxAge, String path, boolean secure, int version, boolean httpOnly)Methods in org.wildfly.security.http.util that return types with arguments of type HttpServerCookie Modifier and Type Method Description List<HttpServerCookie>PrivilegedServerMechanism.HttpServerRequestWrapper. getCookies() -
Uses of HttpServerCookie in org.wildfly.security.http.util.sso
Methods in org.wildfly.security.http.util.sso that return HttpServerCookie Modifier and Type Method Description private HttpServerCookieProgrammaticSingleSignOnCache. getCookie()
-