Java Doc for AuthenticationProcessingFilter.java in  » Security » acegi-security » org » acegisecurity » ui » webapp » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Security » acegi security » org.acegisecurity.ui.webapp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.acegisecurity.ui.AbstractProcessingFilter
      org.acegisecurity.ui.webapp.AuthenticationProcessingFilter

All known Subclasses:   org.acegisecurity.ui.webapp.SiteminderAuthenticationProcessingFilter,
AuthenticationProcessingFilter
public class AuthenticationProcessingFilter extends AbstractProcessingFilter (Code)
Processes an authentication form.

Login forms must present two parameters to this filter: a username and password. The parameter names to use are contained in the static fields AuthenticationProcessingFilter.ACEGI_SECURITY_FORM_USERNAME_KEY and AuthenticationProcessingFilter.ACEGI_SECURITY_FORM_PASSWORD_KEY .

Do not use this class directly. Instead configure web.xml to use the org.acegisecurity.util.FilterToBeanProxy .


author:
   Ben Alex
author:
   Colin Sampaleanu
version:
   $Id: AuthenticationProcessingFilter.java 2110 2007-09-14 14:32:19Z luke_t $


Field Summary
final public static  StringACEGI_SECURITY_FORM_PASSWORD_KEY
    
final public static  StringACEGI_SECURITY_FORM_USERNAME_KEY
    
final public static  StringACEGI_SECURITY_LAST_USERNAME_KEY
    


Method Summary
public  AuthenticationattemptAuthentication(HttpServletRequest request)
    
public  StringgetDefaultFilterProcessesUrl()
     This filter by default responds to /j_acegi_security_check.
public  voidinit(FilterConfig filterConfig)
    
protected  StringobtainPassword(HttpServletRequest request)
     Enables subclasses to override the composition of the password, such as by including additional values and a separator.

This might be used for example if a postcode/zipcode was required in addition to the password.

protected  StringobtainUsername(HttpServletRequest request)
     Enables subclasses to override the composition of the username, such as by including additional values and a separator.
protected  voidsetDetails(HttpServletRequest request, UsernamePasswordAuthenticationToken authRequest)
     Provided so that subclasses may configure what is put into the authentication request's details property.

Field Detail
ACEGI_SECURITY_FORM_PASSWORD_KEY
final public static String ACEGI_SECURITY_FORM_PASSWORD_KEY(Code)



ACEGI_SECURITY_FORM_USERNAME_KEY
final public static String ACEGI_SECURITY_FORM_USERNAME_KEY(Code)



ACEGI_SECURITY_LAST_USERNAME_KEY
final public static String ACEGI_SECURITY_LAST_USERNAME_KEY(Code)





Method Detail
attemptAuthentication
public Authentication attemptAuthentication(HttpServletRequest request) throws AuthenticationException(Code)



getDefaultFilterProcessesUrl
public String getDefaultFilterProcessesUrl()(Code)
This filter by default responds to /j_acegi_security_check. the default



init
public void init(FilterConfig filterConfig) throws ServletException(Code)



obtainPassword
protected String obtainPassword(HttpServletRequest request)(Code)
Enables subclasses to override the composition of the password, such as by including additional values and a separator.

This might be used for example if a postcode/zipcode was required in addition to the password. A delimiter such as a pipe (|) should be used to separate the password and extended value(s). The AuthenticationDao will need to generate the expected password in a corresponding manner.


Parameters:
  request - so that request attributes can be retrieved the password that will be presented in the Authentication request token to theAuthenticationManager



obtainUsername
protected String obtainUsername(HttpServletRequest request)(Code)
Enables subclasses to override the composition of the username, such as by including additional values and a separator.
Parameters:
  request - so that request attributes can be retrieved the username that will be presented in the Authentication request token to theAuthenticationManager



setDetails
protected void setDetails(HttpServletRequest request, UsernamePasswordAuthenticationToken authRequest)(Code)
Provided so that subclasses may configure what is put into the authentication request's details property.
Parameters:
  request - that an authentication request is being created for
Parameters:
  authRequest - the authentication request object that should have its details set



Fields inherited from org.acegisecurity.ui.AbstractProcessingFilter
final public static String ACEGI_SAVED_REQUEST_KEY(Code)(Java Doc)
final public static String ACEGI_SECURITY_LAST_EXCEPTION_KEY(Code)(Java Doc)
protected AuthenticationDetailsSource authenticationDetailsSource(Code)(Java Doc)
protected ApplicationEventPublisher eventPublisher(Code)(Java Doc)
final protected Log logger(Code)(Java Doc)
protected MessageSourceAccessor messages(Code)(Java Doc)

Methods inherited from org.acegisecurity.ui.AbstractProcessingFilter
public void afterPropertiesSet() throws Exception(Code)(Java Doc)
abstract public Authentication attemptAuthentication(HttpServletRequest request) throws AuthenticationException(Code)(Java Doc)
public void destroy()(Code)(Java Doc)
protected String determineFailureUrl(HttpServletRequest request, AuthenticationException failed)(Code)(Java Doc)
protected String determineTargetUrl(HttpServletRequest request)(Code)(Java Doc)
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException(Code)(Java Doc)
public AuthenticationDetailsSource getAuthenticationDetailsSource()(Code)(Java Doc)
public String getAuthenticationFailureUrl()(Code)(Java Doc)
public AuthenticationManager getAuthenticationManager()(Code)(Java Doc)
abstract public String getDefaultFilterProcessesUrl()(Code)(Java Doc)
public String getDefaultTargetUrl()(Code)(Java Doc)
public Properties getExceptionMappings()(Code)(Java Doc)
public String getFilterProcessesUrl()(Code)(Java Doc)
public RememberMeServices getRememberMeServices()(Code)(Java Doc)
public void init(FilterConfig arg0) throws ServletException(Code)(Java Doc)
public boolean isAlwaysUseDefaultTargetUrl()(Code)(Java Doc)
public boolean isContinueChainBeforeSuccessfulAuthentication()(Code)(Java Doc)
public static String obtainFullRequestUrl(HttpServletRequest request)(Code)(Java Doc)
protected void onPreAuthentication(HttpServletRequest request, HttpServletResponse response) throws AuthenticationException, IOException(Code)(Java Doc)
protected void onSuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) throws IOException(Code)(Java Doc)
protected void onUnsuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, AuthenticationException failed) throws IOException(Code)(Java Doc)
protected boolean requiresAuthentication(HttpServletRequest request, HttpServletResponse response)(Code)(Java Doc)
protected void sendRedirect(HttpServletRequest request, HttpServletResponse response, String url) throws IOException(Code)(Java Doc)
public void setAlwaysUseDefaultTargetUrl(boolean alwaysUseDefaultTargetUrl)(Code)(Java Doc)
public void setApplicationEventPublisher(ApplicationEventPublisher eventPublisher)(Code)(Java Doc)
public void setAuthenticationDetailsSource(AuthenticationDetailsSource authenticationDetailsSource)(Code)(Java Doc)
public void setAuthenticationFailureUrl(String authenticationFailureUrl)(Code)(Java Doc)
public void setAuthenticationManager(AuthenticationManager authenticationManager)(Code)(Java Doc)
public void setBufferSize(int bufferSize)(Code)(Java Doc)
public void setContinueChainBeforeSuccessfulAuthentication(boolean continueChainBeforeSuccessfulAuthentication)(Code)(Java Doc)
public void setDefaultTargetUrl(String defaultTargetUrl)(Code)(Java Doc)
public void setExceptionMappings(Properties exceptionMappings)(Code)(Java Doc)
public void setFilterProcessesUrl(String filterProcessesUrl)(Code)(Java Doc)
public void setMessageSource(MessageSource messageSource)(Code)(Java Doc)
public void setRememberMeServices(RememberMeServices rememberMeServices)(Code)(Java Doc)
public void setUseRelativeContext(boolean useRelativeContext)(Code)(Java Doc)
protected void successfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) throws IOException(Code)(Java Doc)
protected void unsuccessfulAuthentication(HttpServletRequest request, HttpServletResponse response, AuthenticationException failed) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.