Package | Description |
---|---|
org.springframework.security.cas.web |
Authenticates standard web browser users via CAS.
|
org.springframework.security.web.access |
Access-control related classes and packages.
|
org.springframework.security.web.authentication |
Authentication processing mechanisms, which respond to the submission of authentication
credentials using various protocols (eg BASIC, CAS, form login etc).
|
org.springframework.security.web.authentication.www |
WWW-Authenticate based authentication mechanism implementations: Basic and Digest authentication.
|
Modifier and Type | Class and Description |
---|---|
class |
CasAuthenticationEntryPoint
Used by the
ExceptionTranslationFilter to commence authentication via the JA-SIG Central
Authentication Service (CAS). |
Modifier and Type | Method and Description |
---|---|
AuthenticationEntryPoint |
ExceptionTranslationFilter.getAuthenticationEntryPoint() |
Modifier and Type | Method and Description |
---|---|
void |
ExceptionTranslationFilter.setAuthenticationEntryPoint(AuthenticationEntryPoint authenticationEntryPoint)
Deprecated.
Use constructor
|
Constructor and Description |
---|
ExceptionTranslationFilter(AuthenticationEntryPoint authenticationEntryPoint) |
ExceptionTranslationFilter(AuthenticationEntryPoint authenticationEntryPoint,
RequestCache requestCache) |
Modifier and Type | Class and Description |
---|---|
class |
DelegatingAuthenticationEntryPoint
An
AuthenticationEntryPoint which selects a concrete AuthenticationEntryPoint based on a
RequestMatcher evaluation. |
class |
Http403ForbiddenEntryPoint
In the pre-authenticated authentication case (unlike CAS, for example) the
user will already have been identified through some external mechanism and a
secure context established by the time the security-enforcement filter is
invoked.
|
class |
LoginUrlAuthenticationEntryPoint
Used by the
ExceptionTranslationFilter to commence a form login
authentication via the UsernamePasswordAuthenticationFilter . |
Modifier and Type | Method and Description |
---|---|
void |
DelegatingAuthenticationEntryPoint.setDefaultEntryPoint(AuthenticationEntryPoint defaultEntryPoint)
EntryPoint which is used when no RequestMatcher returned true
|
Constructor and Description |
---|
DelegatingAuthenticationEntryPoint(LinkedHashMap<RequestMatcher,AuthenticationEntryPoint> entryPoints) |
Modifier and Type | Class and Description |
---|---|
class |
BasicAuthenticationEntryPoint
Used by the
ExceptionTraslationFilter to commence authentication via the BasicAuthenticationFilter . |
class |
DigestAuthenticationEntryPoint
Used by the
SecurityEnforcementFilter to commence authentication via the DigestAuthenticationFilter . |
Modifier and Type | Method and Description |
---|---|
protected AuthenticationEntryPoint |
BasicAuthenticationFilter.getAuthenticationEntryPoint() |
Modifier and Type | Method and Description |
---|---|
void |
BasicAuthenticationFilter.setAuthenticationEntryPoint(AuthenticationEntryPoint authenticationEntryPoint)
Deprecated.
Use constructor injection
|
Constructor and Description |
---|
BasicAuthenticationFilter(AuthenticationManager authenticationManager,
AuthenticationEntryPoint authenticationEntryPoint)
Creates an instance which will authenticate against the supplied
AuthenticationManager and
use the supplied AuthenticationEntryPoint to handle authentication failures. |
Copyright © 2015. All rights reserved.