public enum CsrfProtectionMode extends Enum<CsrfProtectionMode>
| Enum Constant and Description |
|---|
AUTO
activate auto CSRF protection - for all pages and all components
|
OFF
turn CSRF protection off - for all pages and all components
|
| Modifier and Type | Method and Description |
|---|---|
static CsrfProtectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsrfProtectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsrfProtectionMode OFF
public static final CsrfProtectionMode AUTO
public static CsrfProtectionMode[] values()
for (CsrfProtectionMode c : CsrfProtectionMode.values()) System.out.println(c);
public static CsrfProtectionMode 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 © 2013–2024 Porsche Informatik. All rights reserved.