Skip to content

Commit 1631cac

Browse files
1993heqiangmarcusdacoregio
authored andcommitted
Fix typo cas.adoc
1 parent 9078730 commit 1631cac

File tree

1 file changed

+3
-3
lines changed
  • docs/modules/ROOT/pages/servlet/authentication

1 file changed

+3
-3
lines changed

docs/modules/ROOT/pages/servlet/authentication/cas.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,8 @@ protected fun doGet(request: HttpServletRequest, response: HttpServletResponse?)
381381
[[cas-pt]]
382382
=== Proxy Ticket Authentication
383383
The `CasAuthenticationProvider` distinguishes between stateful and stateless clients.
384-
A stateful client is considered any that submits to the `filterProcessUrl` of the `CasAuthenticationFilter`.
385-
A stateless client is any that presents an authentication request to `CasAuthenticationFilter` on a URL other than the `filterProcessUrl`.
384+
A stateful client is considered any that submits to the `filterProcessesUrl` of the `CasAuthenticationFilter`.
385+
A stateless client is any that presents an authentication request to `CasAuthenticationFilter` on a URL other than the `filterProcessesUrl`.
386386

387387
Because remoting protocols have no way of presenting themselves within the context of an `HttpSession`, it isn't possible to rely on the default practice of storing the security context in the session between requests.
388388
Furthermore, because the CAS server invalidates a ticket after it has been validated by the `TicketValidator`, presenting the same proxy ticket on subsequent requests will not work.
@@ -408,7 +408,7 @@ The first step is to specify to authenticate all artifacts as shown below.
408408
----
409409

410410
The next step is to specify `serviceProperties` and the `authenticationDetailsSource` for the `CasAuthenticationFilter`.
411-
The `serviceProperties` property instructs the `CasAuthenticationFilter` to attempt to authenticate all artifacts instead of only ones present on the `filterProcessUrl`.
411+
The `serviceProperties` property instructs the `CasAuthenticationFilter` to attempt to authenticate all artifacts instead of only ones present on the `filterProcessesUrl`.
412412
The `ServiceAuthenticationDetailsSource` creates a `ServiceAuthenticationDetails` that ensures the current URL, based upon the `HttpServletRequest`, is used as the service URL when validating the ticket.
413413
The method for generating the service URL can be customized by injecting a custom `AuthenticationDetailsSource` that returns a custom `ServiceAuthenticationDetails`.
414414

0 commit comments

Comments
 (0)