public static enum CookieFilter.Action extends Enum<CookieFilter.Action>
Enum Constant and Description |
---|
MANAGE
Intercept and manage the cookie within the proxy.
|
RELAY
Relay the cookie between remote client and remote host.
|
SUPPRESS
Remove the cookie from request and response.
|
Modifier and Type | Method and Description |
---|---|
static CookieFilter.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CookieFilter.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CookieFilter.Action MANAGE
public static final CookieFilter.Action SUPPRESS
public static final CookieFilter.Action RELAY
public static CookieFilter.Action[] values()
for (CookieFilter.Action c : CookieFilter.Action.values()) System.out.println(c);
public static CookieFilter.Action 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 nullCopyright © 2025 Open Identity Platform Community. All rights reserved.