Enum Class PayloadInterceptorOrder
java.lang.Object
java.lang.Enum<PayloadInterceptorOrder>
org.springframework.security.config.annotation.rsocket.PayloadInterceptorOrder
- All Implemented Interfaces:
Serializable
,Comparable<PayloadInterceptorOrder>
,Constable
,org.springframework.core.Ordered
public enum PayloadInterceptorOrder
extends Enum<PayloadInterceptorOrder>
implements org.springframework.core.Ordered
The standard order for
PayloadInterceptor
to be sorted. The actual values might
change, so users should use the getOrder()
method to calculate the position
dynamically rather than copy values.- Since:
- 5.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhere anonymous authentication is placed.A generic placeholder for other types of authentication.Where authorization is placed.Where basic authentication is placed.Where JWT based authentication is performed. -
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Method Summary
Modifier and TypeMethodDescriptionint
getOrder()
static PayloadInterceptorOrder
Returns the enum constant of this class with the specified name.static PayloadInterceptorOrder[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BASIC_AUTHENTICATION
Where basic authentication is placed. -
JWT_AUTHENTICATION
Where JWT based authentication is performed.- See Also:
-
AUTHENTICATION
A generic placeholder for other types of authentication.- See Also:
-
ANONYMOUS
Where anonymous authentication is placed. -
AUTHORIZATION
Where authorization is placed.- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getOrder
public int getOrder()- Specified by:
getOrder
in interfaceorg.springframework.core.Ordered
-