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.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.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, JwtClaimsSet claimsSet, String redirectEndpoint, CookieBuilder cookieBuilder)
CreateCdSsoContext
for supplied JWT.CrossDomainSingleSignOnFilter(AmService amService, String clientId, String redirectEndpoint, CookieBuilder cookieBuilder, Supplier<String> idSupplier, JwsSignatureVerifier verifier, Clock clock, Handler failureHandler, Expression<Boolean> logoutExpression, String defaultLogoutLandingPage, String authnService)
Creates a new CrossDomainSingleSignOnFilter.
-