diff --git a/core/src/main/java/org/acegisecurity/ui/cas/CasProcessingFilter.java b/core/src/main/java/org/acegisecurity/ui/cas/CasProcessingFilter.java index ba2ffc6c20..a75873bdbc 100644 --- a/core/src/main/java/org/acegisecurity/ui/cas/CasProcessingFilter.java +++ b/core/src/main/java/org/acegisecurity/ui/cas/CasProcessingFilter.java @@ -32,21 +32,21 @@ import javax.servlet.http.HttpServletRequest; *

* 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 opal ticket + * 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 {@link ServiceProperties#getService()} method. *

* - *

+ *

* Processing the service ticket involves creating a * UsernamePasswordAuthenticationToken which uses {@link * #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 @@ -54,8 +54,8 @@ import javax.servlet.http.HttpServletRequest; * with the CAS server. *

* - *

- * Do not use this class directly. Instead configure + *

+ * Do not use this class directly. Instead configure * web.xml to use the {@link * net.sf.acegisecurity.util.FilterToBeanProxy}. *