Package org.apache.catalina.filters
Enum CorsFilter.CORSRequestType
- All Implemented Interfaces:
- Serializable,- Comparable<CorsFilter.CORSRequestType>,- java.lang.constant.Constable
- Enclosing class:
- CorsFilter
Enumerates varies types of CORS requests. Also, provides utility methods to determine the request type.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionAn HTTP request that needs to be pre-flighted.An invalid CORS request, i.e. it qualifies to be a CORS request, but fails to be a valid one.Not a CORS request, but a normal request.A pre-flight CORS request, to get meta information, before a non-simple HTTP request is sent.A simple HTTP request, i.e. it shouldn't be pre-flighted.
- 
Method SummaryModifier and TypeMethodDescriptionstatic CorsFilter.CORSRequestTypeReturns the enum constant of this type with the specified name.static CorsFilter.CORSRequestType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
SIMPLEA simple HTTP request, i.e. it shouldn't be pre-flighted.
- 
ACTUALAn HTTP request that needs to be pre-flighted.
- 
PRE_FLIGHTA pre-flight CORS request, to get meta information, before a non-simple HTTP request is sent.
- 
NOT_CORSNot a CORS request, but a normal request.
- 
INVALID_CORSAn invalid CORS request, i.e. it qualifies to be a CORS request, but fails to be a valid one.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-