Enum Class SessionCreationPolicy
java.lang.Object
java.lang.Enum<SessionCreationPolicy>
org.springframework.security.config.http.SessionCreationPolicy
- All Implemented Interfaces:
Serializable
,Comparable<SessionCreationPolicy>
,Constable
Specifies the various session creation policies for Spring Security.
- Since:
- 3.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAlways create anHttpSession
Spring Security will only create anHttpSession
if requiredSpring Security will never create anHttpSession
, but will use theHttpSession
if it already existsSpring Security will never create anHttpSession
and it will never use it to obtain theSecurityContext
-
Method Summary
Modifier and TypeMethodDescriptionstatic SessionCreationPolicy
Returns the enum constant of this class with the specified name.static SessionCreationPolicy[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALWAYS
Always create anHttpSession
-
NEVER
Spring Security will never create anHttpSession
, but will use theHttpSession
if it already exists -
IF_REQUIRED
Spring Security will only create anHttpSession
if required -
STATELESS
Spring Security will never create anHttpSession
and it will never use it to obtain theSecurityContext
-
-
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
-