Package org.apache.wicket.protocol.http
Enum ResourceIsolationRequestCycleListener.CsrfAction
- java.lang.Object
-
- java.lang.Enum<ResourceIsolationRequestCycleListener.CsrfAction>
-
- org.apache.wicket.protocol.http.ResourceIsolationRequestCycleListener.CsrfAction
-
- All Implemented Interfaces:
Serializable
,Comparable<ResourceIsolationRequestCycleListener.CsrfAction>
- Enclosing class:
- ResourceIsolationRequestCycleListener
public static enum ResourceIsolationRequestCycleListener.CsrfAction extends Enum<ResourceIsolationRequestCycleListener.CsrfAction>
The action to perform when the outcome of the resource isolation policy is DISALLOWED or UNKNOWN.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABORT
Aborts the request and throws an exception when a CSRF request is detected.ALLOW
Detects a CSRF request, logs it and allows the request to continue.SUPPRESS
Ignores the action of a CSRF request, and just renders the page it was targeted against.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceIsolationRequestCycleListener.CsrfAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static ResourceIsolationRequestCycleListener.CsrfAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABORT
public static final ResourceIsolationRequestCycleListener.CsrfAction ABORT
Aborts the request and throws an exception when a CSRF request is detected.
-
SUPPRESS
public static final ResourceIsolationRequestCycleListener.CsrfAction SUPPRESS
Ignores the action of a CSRF request, and just renders the page it was targeted against.
-
ALLOW
public static final ResourceIsolationRequestCycleListener.CsrfAction ALLOW
Detects a CSRF request, logs it and allows the request to continue.
-
-
Method Detail
-
values
public static ResourceIsolationRequestCycleListener.CsrfAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResourceIsolationRequestCycleListener.CsrfAction c : ResourceIsolationRequestCycleListener.CsrfAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceIsolationRequestCycleListener.CsrfAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-