Uses of Class
org.forgerock.openig.http.CookieBuilder
-
Packages that use CookieBuilder Package Description org.forgerock.openig.http Integrates with the ForgeRock HTTP Framework.org.forgerock.openig.jwt Provides JWT capabilities to the Identity Gateway.org.forgerock.openig.openam Integration classes specifically for ForgeRock Access Management. -
-
Uses of CookieBuilder in org.forgerock.openig.http
Methods in org.forgerock.openig.http that return CookieBuilder Modifier and Type Method Description static CookieBuilder
CookieBuilder. builder(String name)
Create aCookieBuilder
with just the cookie name set.static CookieBuilder
CookieBuilder. builder(JsonValue cookieConfig, String defaultName, String defaultPath)
Create aCookieBuilder
based on the JSON structure of:CookieBuilder
CookieBuilder. domain(String domain)
Set the domain and return a new instance of this builder.CookieBuilder
CookieBuilder. httpOnly(boolean httpOnly)
Set the httpOnly flag and return a new instance of this builder.CookieBuilder
CookieBuilder. path(String path)
Set the path and return a new instance of this builder.CookieBuilder
CookieBuilder. sameSite(Cookie.SameSite sameSite)
Set theSameSite
enum and return a new instance of this builder.CookieBuilder
CookieBuilder. secure(boolean secure)
Set the secure flag and return a new instance of this builder. -
Uses of CookieBuilder in org.forgerock.openig.jwt
Constructors in org.forgerock.openig.jwt with parameters of type CookieBuilder Constructor Description JwtCookieSession(Request request, KeyPair pair, CookieBuilder cookieBuilder, Clock clock, Duration sessionTimeout, boolean persistentCookie, Duration skewAllowance, org.forgerock.json.jose.jws.handlers.SigningHandler signingHandler)
Builds a new JwtCookieSession that will manage the given Request's session.JwtSessionManager(KeyPair keyPair, CookieBuilder cookieBuilder, Clock clock, Duration sessionTimeout, boolean persistentCookie, Duration skewAllowance, org.forgerock.json.jose.jws.handlers.SigningHandler handler)
Builds a new JwtSessionManager using the given KeyPair for session encryption, storing the opaque result in a cookie with the given name. -
Uses of CookieBuilder in org.forgerock.openig.openam
Methods in org.forgerock.openig.openam that return CookieBuilder Modifier and Type Method Description CookieBuilder
CdSsoContext. getCookieBuilder()
Get the CDSSO authentication cookie builder.Constructors in org.forgerock.openig.openam with parameters of type CookieBuilder Constructor Description CdSsoContext(Context parent, String token, org.forgerock.json.jose.jwt.JwtClaimsSet claimsSet, String redirectEndpoint, CookieBuilder cookieBuilder)
CreateCdSsoContext
for supplied JWT.CrossDomainSingleSignOnFilter(org.forgerock.openig.tools.am.AmService amService, String clientId, String redirectEndpoint, CookieBuilder cookieBuilder, Supplier<String> idSupplier, org.forgerock.openig.tools.jwt.JwsSignatureVerifier verifier, Clock clock, Handler failureHandler)
Creates a new CrossDomainSingleSignOnFilter.
-