Uses of Class
org.forgerock.caf.http.Cookie
-
Packages that use Cookie Package Description org.forgerock.caf.http HTTP support for CAF.org.forgerock.jaspi.modules.session.jwt This package contains classes for the Jwt Session JASPI Authentication Module. -
-
Uses of Cookie in org.forgerock.caf.http
Methods in org.forgerock.caf.http that return Cookie Modifier and Type Method Description static Cookie
Cookie. newCookie(String name, String value)
Creates a newCookie
with the provided name and value.Methods in org.forgerock.caf.http that return types with arguments of type Cookie Modifier and Type Method Description static Set<Cookie>
Cookie. getCookies(javax.servlet.http.HttpServletRequest request)
Gets all of theCookie
s from the providedHttpServletRequest
.Methods in org.forgerock.caf.http with parameters of type Cookie Modifier and Type Method Description static void
Cookie. addCookie(Cookie cookie, javax.servlet.http.HttpServletResponse resp)
Adds the provided cookie to the providedHttpServletResponse
as a 'Set-Cookie' header.Method parameters in org.forgerock.caf.http with type arguments of type Cookie Modifier and Type Method Description static void
Cookie. addCookies(Collection<Cookie> cookies, javax.servlet.http.HttpServletResponse resp)
Adds the provided cookies to the providedHttpServletResponse
as a 'Set-Cookie' header. -
Uses of Cookie in org.forgerock.jaspi.modules.session.jwt
Methods in org.forgerock.jaspi.modules.session.jwt that return Cookie Modifier and Type Method Description Cookie
ServletJwtSessionModule. findJwtSessionCookie(javax.security.auth.message.MessageInfo messageInfo)
Find a session cookie in the given message info.
-