Enum AuthenticatorBase.AllowCorsPreflight
java.lang.Object
java.lang.Enum<AuthenticatorBase.AllowCorsPreflight>
org.apache.catalina.authenticator.AuthenticatorBase.AllowCorsPreflight
- All Implemented Interfaces:
Serializable, Comparable<AuthenticatorBase.AllowCorsPreflight>, java.lang.constant.Constable
- Enclosing class:
AuthenticatorBase
protected static enum AuthenticatorBase.AllowCorsPreflight
extends Enum<AuthenticatorBase.AllowCorsPreflight>
Defines the modes for handling CORS preflight requests in the authenticator.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static AuthenticatorBase.AllowCorsPreflight[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NEVER
Never allow CORS preflight bypass. -
FILTER
Allow CORS preflight bypass only when a CORS filter is configured. -
ALWAYS
Always allow CORS preflight bypass.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-