| java.lang.Object | |||
| ↳ | org.springframework.web.filter.GenericFilterBean | ||
| ↳ | org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter | ||
| ↳ | org.springframework.security.web.authentication.preauth.RequestHeaderAuthenticationFilter | ||
A simple pre-authenticated filter which obtains the username from a request header, for use with systems such as CA Siteminder.
As with most pre-authenticated scenarios, it is essential that the external authentication system is set up correctly as this filter does no authentication whatsoever. All the protection is assumed to be provided externally and if this filter is included inappropriately in a configuration, it would be possible to assume the identity of a user merely by setting the correct header name. This also means it should not generally be used in combination with other Spring Security authentication mechanisms such as form login, as this would imply there was a means of bypassing the external system which would be risky.
The property principalRequestHeader is the name of the request header that contains the username. It
defaults to "SM_USER" for compatibility with Siteminder.
If the header is missing from the request, getPreAuthenticatedPrincipal will throw an exception. You
can override this behaviour by setting the exceptionIfHeaderMissing property.
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.springframework.web.filter.GenericFilterBean
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Defines whether an exception should be raised if the principal header is missing.
| |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials aren't usually applicable, but if a
credentialsRequestHeader is set, this
will be read and used as the credentials value. | |||||||||||
Read and returns the header named by
principalRequestHeader from the request. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter
| |||||||||||
From class
org.springframework.web.filter.GenericFilterBean
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
javax.servlet.Filter
| |||||||||||
From interface
org.springframework.beans.factory.BeanNameAware
| |||||||||||
From interface
org.springframework.beans.factory.DisposableBean
| |||||||||||
From interface
org.springframework.beans.factory.InitializingBean
| |||||||||||
From interface
org.springframework.context.ApplicationEventPublisherAware
| |||||||||||
From interface
org.springframework.web.context.ServletContextAware
| |||||||||||
Defines whether an exception should be raised if the principal header is missing. Defaults to true.
| exceptionIfHeaderMissing | set to false to override the default behaviour and allow
the request to proceed if no header is found.
|
|---|
Credentials aren't usually applicable, but if a credentialsRequestHeader is set, this
will be read and used as the credentials value. Otherwise a dummy value will be used.
Read and returns the header named by principalRequestHeader from the request.
| PreAuthenticatedCredentialsNotFoundException | if the header is missing and exceptionIfHeaderMissing
is set to true.
|
|---|