From 74d85c1e4663aee3886df877380092f9b290a5b1 Mon Sep 17 00:00:00 2001 From: Habin Song <83588265+boulce@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:25:52 +0900 Subject: [PATCH] Typo: Update anonymous.adoc I changed 'instancesthat' to 'instances that' --- docs/modules/ROOT/pages/servlet/authentication/anonymous.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authentication/anonymous.adoc b/docs/modules/ROOT/pages/servlet/authentication/anonymous.adoc index 2ac5d4783c..aac99a58b0 100644 --- a/docs/modules/ROOT/pages/servlet/authentication/anonymous.adoc +++ b/docs/modules/ROOT/pages/servlet/authentication/anonymous.adoc @@ -27,7 +27,7 @@ You can customize (or disable) it by using the `` element. You need not configure the beans described here unless you are using traditional bean configuration. Three classes work together to provide the anonymous authentication feature. -`AnonymousAuthenticationToken` is an implementation of `Authentication` and stores the `GrantedAuthority` instancesthat apply to the anonymous principal. +`AnonymousAuthenticationToken` is an implementation of `Authentication` and stores the `GrantedAuthority` instances that apply to the anonymous principal. There is a corresponding `AnonymousAuthenticationProvider`, which is chained into the `ProviderManager` so that `AnonymousAuthenticationToken` instances are accepted. Finally, an `AnonymousAuthenticationFilter` is chained after the normal authentication mechanisms and automatically adds an `AnonymousAuthenticationToken` to the `SecurityContextHolder` if there is no existing `Authentication` held there. The filter and authentication provider is defined as follows: