Package io.jans.server.filters
Enum AbstractCorsFilter.CORSRequestType
java.lang.Object
java.lang.Enum<AbstractCorsFilter.CORSRequestType>
io.jans.server.filters.AbstractCorsFilter.CORSRequestType
- All Implemented Interfaces:
Serializable
,Comparable<AbstractCorsFilter.CORSRequestType>
,java.lang.constant.Constable
- Enclosing class:
- AbstractCorsFilter
protected static enum AbstractCorsFilter.CORSRequestType
extends Enum<AbstractCorsFilter.CORSRequestType>
Enumerates varies types of CORS requests. Also, provides utility methods
to determine the request type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA 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 Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static AbstractCorsFilter.CORSRequestType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SIMPLE
A simple HTTP request, i.e. it shouldn't be pre-flighted. -
ACTUAL
A HTTP request that needs to be pre-flighted. -
PRE_FLIGHT
A pre-flight CORS request, to get meta information, before a non-simple HTTP request is sent. -
NOT_CORS
Not a CORS request, but a normal request. -
INVALID_CORS
An invalid CORS request, i.e. it qualifies to be a CORS request, but fails to be a valid one.
-
-
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
-