Class RequestHeaderAuthenticationFilter
- java.lang.Object
-
- org.springframework.web.filter.GenericFilterBean
-
- org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter
-
- org.springframework.security.web.authentication.preauth.RequestHeaderAuthenticationFilter
-
- All Implemented Interfaces:
javax.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationEventPublisherAware,org.springframework.context.EnvironmentAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
public class RequestHeaderAuthenticationFilter extends AbstractPreAuthenticatedProcessingFilter
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
principalRequestHeaderis 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,
getPreAuthenticatedPrincipalwill throw an exception. You can override this behaviour by setting theexceptionIfHeaderMissingproperty.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description RequestHeaderAuthenticationFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.ObjectgetPreAuthenticatedCredentials(javax.servlet.http.HttpServletRequest request)Credentials aren't usually applicable, but if acredentialsRequestHeaderis set, this will be read and used as the credentials value.protected java.lang.ObjectgetPreAuthenticatedPrincipal(javax.servlet.http.HttpServletRequest request)Read and returns the header named byprincipalRequestHeaderfrom the request.voidsetCredentialsRequestHeader(java.lang.String credentialsRequestHeader)voidsetExceptionIfHeaderMissing(boolean exceptionIfHeaderMissing)Defines whether an exception should be raised if the principal header is missing.voidsetPrincipalRequestHeader(java.lang.String principalRequestHeader)-
Methods inherited from class org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter
afterPropertiesSet, doFilter, getAuthenticationDetailsSource, principalChanged, setApplicationEventPublisher, setAuthenticationDetailsSource, setAuthenticationFailureHandler, setAuthenticationManager, setAuthenticationSuccessHandler, setCheckForPrincipalChanges, setContinueFilterChainOnUnsuccessfulAuthentication, setInvalidateSessionOnPrincipalChange, setRequiresAuthenticationRequestMatcher, successfulAuthentication, unsuccessfulAuthentication
-
-
-
-
Method Detail
-
getPreAuthenticatedPrincipal
protected java.lang.Object getPreAuthenticatedPrincipal(javax.servlet.http.HttpServletRequest request)
Read and returns the header named byprincipalRequestHeaderfrom the request.- Specified by:
getPreAuthenticatedPrincipalin classAbstractPreAuthenticatedProcessingFilter- Throws:
PreAuthenticatedCredentialsNotFoundException- if the header is missing andexceptionIfHeaderMissingis set totrue.
-
getPreAuthenticatedCredentials
protected java.lang.Object getPreAuthenticatedCredentials(javax.servlet.http.HttpServletRequest request)
Credentials aren't usually applicable, but if acredentialsRequestHeaderis set, this will be read and used as the credentials value. Otherwise a dummy value will be used.- Specified by:
getPreAuthenticatedCredentialsin classAbstractPreAuthenticatedProcessingFilter
-
setPrincipalRequestHeader
public void setPrincipalRequestHeader(java.lang.String principalRequestHeader)
-
setCredentialsRequestHeader
public void setCredentialsRequestHeader(java.lang.String credentialsRequestHeader)
-
setExceptionIfHeaderMissing
public void setExceptionIfHeaderMissing(boolean exceptionIfHeaderMissing)
Defines whether an exception should be raised if the principal header is missing. Defaults totrue.- Parameters:
exceptionIfHeaderMissing- set tofalseto override the default behaviour and allow the request to proceed if no header is found.
-
-