From 5c3799cd16e49c2860fcc4d9c1fe8a999f4eba55 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Sat, 5 Mar 2005 19:48:02 +0000 Subject: [PATCH] Changed "opal ticket" to "opaque ticket" in Javadoc. --- .../org/acegisecurity/ui/cas/CasProcessingFilter.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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}. *