public enum ApplicationCookieName extends Enum<ApplicationCookieName>
| Enum Constant and Description |
|---|
AUTHORIZATION_BEARER
Authorization Bearer contains signed JSON Web Token and requires Strict Same Site handling
|
LOGOUT_REQUEST_IDENTIFIER
Logout Requests can interact with external identity providers requiring no Same Site restrictions
|
OIDC_REQUEST_IDENTIFIER
OpenID Connect Requests use external identity providers requiring no Same Site restrictions
|
REQUEST_TOKEN
Cross-Site Request Forgery mitigation token requires Strict Same Site handling
|
SAML_REQUEST_IDENTIFIER
SAML Requests use external identity providers requiring no Same Site restrictions
|
| Modifier and Type | Field and Description |
|---|---|
private String |
cookieName |
private SameSitePolicy |
sameSitePolicy |
| Modifier and Type | Method and Description |
|---|---|
String |
getCookieName() |
SameSitePolicy |
getSameSitePolicy() |
static ApplicationCookieName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationCookieName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationCookieName AUTHORIZATION_BEARER
public static final ApplicationCookieName REQUEST_TOKEN
public static final ApplicationCookieName LOGOUT_REQUEST_IDENTIFIER
public static final ApplicationCookieName OIDC_REQUEST_IDENTIFIER
public static final ApplicationCookieName SAML_REQUEST_IDENTIFIER
private final String cookieName
private final SameSitePolicy sameSitePolicy
public static ApplicationCookieName[] values()
for (ApplicationCookieName c : ApplicationCookieName.values()) System.out.println(c);
public static ApplicationCookieName valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getCookieName()
public SameSitePolicy getSameSitePolicy()
Copyright © 2023 Apache NiFi Project. All rights reserved.