Java Doc for CasProcessingFilter.java in  » Security » acegi-security » org » acegisecurity » ui » cas » 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.cas 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.acegisecurity.ui.AbstractProcessingFilter
      org.acegisecurity.ui.cas.CasProcessingFilter

CasProcessingFilter
public class CasProcessingFilter extends AbstractProcessingFilter (Code)
Processes a CAS service ticket.

A service ticket consists of an opaque ticket string. It arrives at this filter by the user's browser successfully authenticating using CAS, and then receiving a HTTP redirect to a service. The opaque ticket string is presented in the ticket request parameter. This filter monitors the service URL so it can receive the service ticket and process it. The CAS server knows which service URL to use via the ServiceProperties.getService method.

Processing the service ticket involves creating a UsernamePasswordAuthenticationToken which uses CasProcessingFilter.CAS_STATEFUL_IDENTIFIER for the principal and the opaque ticket string as the credentials.

The configured AuthenticationManager is expected to provide a provider that can recognise UsernamePasswordAuthenticationTokens containing this special principal name, and process them accordingly by validation with the CAS server.

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


author:
   Ben Alex
version:
   $Id: CasProcessingFilter.java 1496 2006-05-23 13:38:33Z benalex $


Field Summary
final public static  StringCAS_STATEFUL_IDENTIFIER
     Used to identify a CAS request for a stateful user agent, such as a web browser.
final public static  StringCAS_STATELESS_IDENTIFIER
     Used to identify a CAS request for a stateless user agent, such as a remoting protocol client (eg Hessian, Burlap, SOAP etc).


Method Summary
public  AuthenticationattemptAuthentication(HttpServletRequest request)
    
public  StringgetDefaultFilterProcessesUrl()
     This filter by default responds to /j_acegi_cas_security_check.
public  voidinit(FilterConfig filterConfig)
    

Field Detail
CAS_STATEFUL_IDENTIFIER
final public static String CAS_STATEFUL_IDENTIFIER(Code)
Used to identify a CAS request for a stateful user agent, such as a web browser.



CAS_STATELESS_IDENTIFIER
final public static String CAS_STATELESS_IDENTIFIER(Code)
Used to identify a CAS request for a stateless user agent, such as a remoting protocol client (eg Hessian, Burlap, SOAP etc). Results in a more aggressive caching strategy being used, as the absence of a HttpSession will result in a new authentication attempt on every request.





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



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



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



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.