This is an automated email from the ASF dual-hosted git repository.
fpapon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shiro-site.git
The following commit(s) were added to refs/heads/master by this push:
new a1d8e84 Fix typo to format inline code properly
new bb82892 Merge pull request #47 from Binney/patch-1
a1d8e84 is described below
commit a1d8e84d0218e82f245fa152dcaf6dc603f81097
Author: Binney <[email protected]>
AuthorDate: Sat Aug 31 16:32:32 2019 +0100
Fix typo to format inline code properly
Remove a couple of stray backticks!
---
authentication.md.vtl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/authentication.md.vtl b/authentication.md.vtl
index 8a6025a..733cbfc 100644
--- a/authentication.md.vtl
+++ b/authentication.md.vtl
@@ -185,7 +185,7 @@ We've taken our previous architecture diagram from the
[Architecture](architectu
**Step 2**: The `Subject` instance, typically a
[`DelegatingSubject`](static/current/apidocs/org/apache/shiro/subject/support/DelegatingSubject.html)
(or a subclass) delegates to the application's `SecurityManager` by calling
`securityManager.login(token)`, where the actual authentication work begins.
-**Step 3**: The `SecurityManager`, being a basic 'umbrella' component,
receives the token and simply delegates to its internal
[`Authenticator`](static/current/apidocs/org/apache/shiro/authc/Authenticator.html)`
instance by calling
`authenticator.[`authenticate(token)`](static/current/apidocs/org/apache/shiro/authc/Authenticator.html#[[#]]#authenticate-org.apache.shiro.authc.AuthenticationToken-).
This is almost always a
[`ModularRealmAuthenticator`](static/current/apidocs/org/apache/shi [...]
+**Step 3**: The `SecurityManager`, being a basic 'umbrella' component,
receives the token and simply delegates to its internal
[`Authenticator`](static/current/apidocs/org/apache/shiro/authc/Authenticator.html)
instance by calling
[`authenticator.authenticate(token)`](static/current/apidocs/org/apache/shiro/authc/Authenticator.html#[[#]]#authenticate-org.apache.shiro.authc.AuthenticationToken-).
This is almost always a
[`ModularRealmAuthenticator`](static/current/apidocs/org/apache/shiro [...]
**Step 4**: If more than one `Realm` is configured for the application, the
`ModularRealmAuthenticator` instance will initiate a multi-`Realm`
authentication attempt utilizing its configured
[`AuthenticationStrategy`](static/current/apidocs/org/apache/shiro/authc/pam/AuthenticationStrategy.html).
Before, during and after the `Realms` are invoked for authentication, the
`AuthenticationStrategy` will be called to allow it to react to each Realm's
results. We will cover `AuthenticationStrat [...]