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 HttpServerCookie
HttpServerCookie. getInstance(String name, String value, String domain, int maxAge, String path, boolean secure, int version, boolean httpOnly)
Returns a new instance representingHttpServerCookie
Methods in org.wildfly.security.http that return types with arguments of type HttpServerCookie Modifier and Type Method Description List<HttpServerCookie>
HttpExchangeSpi. getCookies()
Returns aList
containing all of theHttpServerCookie
objects the client sent with this request.List<HttpServerCookie>
HttpServerRequest. getCookies()
Returns aList
containing all of theHttpServerCookie
objects the client sent with this request, or an emptyList
if 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 void
HttpAuthenticator.AuthenticationExchange. setResponseCookie(HttpServerCookie cookie)
void
HttpExchangeSpi. setResponseCookie(HttpServerCookie cookie)
Sets a response cookie.void
HttpServerResponse. 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 class
SimpleHttpServerCookie
A simple implementation ofHttpServerCookie
.Methods in org.wildfly.security.http.util that return HttpServerCookie Modifier and Type Method Description static HttpServerCookie
SimpleHttpServerCookie. 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 HttpServerCookie
ProgrammaticSingleSignOnCache. getCookie()
-