Java org.springframework.security.config.http SessionCreationPolicy fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.config.http SessionCreationPolicy fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.config.http SessionCreationPolicy.

The text is from its open source code.

Field

SessionCreationPolicyALWAYS
Always create an HttpSession
SessionCreationPolicyNEVER
Spring Security will never create an HttpSession , but will use the HttpSession if it already exists
SessionCreationPolicyIF_REQUIRED
Spring Security will only create an HttpSession if required
SessionCreationPolicySTATELESS
Spring Security will never create an HttpSession and it will never use it to obtain the SecurityContext