P13NAuthFilter Class

DEPRECATED Configure com.bea.p13n.servlets.PortalServletFilter in web.xml

com.bea.p13n.servlets
P13NAuthFilter Class

public class P13NAuthFilter

    extends AuthFilter

On WLS recommendation, this use of this class has been deprecated. Its previous functionality has been replaced by the PortalServletFilter.


Hierarchy
Object
  GenericServlet
    HttpServlet
      AuthFilter
        P13NAuthFilter
All Implemented Interfaces

Serializable, Servlet, ServletConfig

Field Summary

   
Fields from  weblogic.servlet.security.AuthFilter
TARGET_URL
 

Constructor Summary

P13NAuthFilter()

 

Method Summary

public void
doFailAuth(ServletRequest req, ServletResponse res)
Called after a failed authentication in a webapp.
public void
doPreAuth(ServletRequest req, ServletResponse res)
Called just before Authentication and Authorization occur in a webapp.
public boolean
doSuccessAuth(ServletRequest req, ServletResponse res)
Called after a successfull authentication in a webapp.
protected void
initializeProfile(HttpServletRequest req)
Initialize a ProfileWrapper in the session for the logged in user.
 
Methods from  weblogic.servlet.security.AuthFilter
service
 
Methods from  javax.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service, service
 
Methods from  javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log, service
 
Methods from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
   
Methods from interface javax.servlet.Servlet
destroy, getServletConfig, getServletInfo, init, service
 
Methods from interface javax.servlet.ServletConfig
getInitParameter, getInitParameterNames, getServletContext, getServletName
 

Constructor Detail

P13NAuthFilter

public P13NAuthFilter()
 

Method Detail

doFailAuth(ServletRequest, ServletResponse) Method

public void doFailAuth(ServletRequest req, 
                       ServletResponse res)
Called after a failed authentication in a webapp.

This method here does nothing.

Overrides
AuthFilter.doFailAuth(ServletRequest, ServletResponse)

doPreAuth(ServletRequest, ServletResponse) Method

public void doPreAuth(ServletRequest req, 
                      ServletResponse res)
Called just before Authentication and Authorization occur in a webapp.

This does nothing here.

Overrides
AuthFilter.doPreAuth(ServletRequest, ServletResponse)

doSuccessAuth(ServletRequest, ServletResponse) Method

public boolean doSuccessAuth(ServletRequest req, 
                             ServletResponse res)
Called after a successfull authentication in a webapp. The PortalServletFilter is assumed to be comfigured in the web.xml, which will take care of firing events, swapping profiles if needed, etc.

Overrides
AuthFilter.doSuccessAuth(ServletRequest, ServletResponse)

initializeProfile(HttpServletRequest) Method

protected void initializeProfile(HttpServletRequest req)
Initialize a ProfileWrapper in the session for the logged in user.