瀏覽代碼

Document description error

Fixes gh-8119
Dávid Kovács 5 年之前
父節點
當前提交
70792a9072
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/manual/src/docs/asciidoc/_includes/servlet/authentication/unpwd/basic.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/servlet/authentication/unpwd/basic.adoc

@@ -30,7 +30,7 @@ image::{figures}/basicauthenticationfilter.png[]
 The figure builds off our <<servlet-securityfilterchain,`SecurityFilterChain`>> diagram.
 
 
-image:{icondir}/number_1.png[] When the user submits their username and password, the `UsernamePasswordAuthenticationFilter` creates a `UsernamePasswordAuthenticationToken` which is a type of <<servlet-authentication-authentication,`Authentication`>> by extracting the username and password from the `HttpServletRequest`.
+image:{icondir}/number_1.png[] When the user submits their username and password, the `BasicAuthenticationFilter` creates a `UsernamePasswordAuthenticationToken` which is a type of <<servlet-authentication-authentication,`Authentication`>> by extracting the username and password from the `HttpServletRequest`.
 
 image:{icondir}/number_2.png[] Next, the `UsernamePasswordAuthenticationToken` is passed into the `AuthenticationManager` to be authenticated.
 The details of what `AuthenticationManager` look like depend on how the <<servlet-authentication-unpwd-storage,user information is stored>>.