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 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
HttpExchangeSpi. setResponseCookie(HttpServerCookie cookie)
Sets a response cookie.void
HttpServerResponse. setResponseCookie(HttpServerCookie cookie)
Sets a response cookie
-