diff --git a/web/src/main/java/org/springframework/security/web/authentication/UsernamePasswordAuthenticationFilter.java b/web/src/main/java/org/springframework/security/web/authentication/UsernamePasswordAuthenticationFilter.java index e26abcaeb8..895d0503a9 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/UsernamePasswordAuthenticationFilter.java +++ b/web/src/main/java/org/springframework/security/web/authentication/UsernamePasswordAuthenticationFilter.java @@ -16,6 +16,7 @@ package org.springframework.security.web.authentication; +import org.springframework.lang.Nullable; import org.springframework.security.authentication.AuthenticationServiceException; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; @@ -109,6 +110,7 @@ public class UsernamePasswordAuthenticationFilter extends * @return the password that will be presented in the Authentication * request token to the AuthenticationManager */ + @Nullable protected String obtainPassword(HttpServletRequest request) { return request.getParameter(passwordParameter); } @@ -122,6 +124,7 @@ public class UsernamePasswordAuthenticationFilter extends * @return the username that will be presented in the Authentication * request token to the AuthenticationManager */ + @Nullable protected String obtainUsername(HttpServletRequest request) { return request.getParameter(usernameParameter); }