public enum SecurityCookieName extends Enum<SecurityCookieName>
| Enum Constant and Description |
|---|
AUTHORIZATION_BEARER |
REQUEST_TOKEN
See IETF Cookie Prefixes Draft Section 3.1 related to Secure prefix handling
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static SecurityCookieName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityCookieName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityCookieName REQUEST_TOKEN
public static final SecurityCookieName AUTHORIZATION_BEARER
private String name
public static SecurityCookieName[] values()
for (SecurityCookieName c : SecurityCookieName.values()) System.out.println(c);
public static SecurityCookieName 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 getName()
Copyright © 2023 Apache NiFi Project. All rights reserved.