public class

J2eePreAuthenticatedProcessingFilter

extends AbstractPreAuthenticatedProcessingFilter
java.lang.Object
   ↳ org.springframework.web.filter.GenericFilterBean
     ↳ org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter
       ↳ org.springframework.security.web.authentication.preauth.j2ee.J2eePreAuthenticatedProcessingFilter

Class Overview

This AbstractPreAuthenticatedProcessingFilter implementation is based on the J2EE container-based authentication mechanism. It will use the J2EE user principal name as the pre-authenticated principal.

Summary

[Expand]
Inherited Fields
From class org.springframework.web.filter.GenericFilterBean
Public Constructors
J2eePreAuthenticatedProcessingFilter()
Protected Methods
Object getPreAuthenticatedCredentials(HttpServletRequest httpRequest)
For J2EE container-based authentication there is no generic way to retrieve the credentials, as such this method returns a fixed dummy value.
Object getPreAuthenticatedPrincipal(HttpServletRequest httpRequest)
Return the J2EE user name.
[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

Public Constructors

public J2eePreAuthenticatedProcessingFilter ()

Protected Methods

protected Object getPreAuthenticatedCredentials (HttpServletRequest httpRequest)

For J2EE container-based authentication there is no generic way to retrieve the credentials, as such this method returns a fixed dummy value.

protected Object getPreAuthenticatedPrincipal (HttpServletRequest httpRequest)

Return the J2EE user name.