Polish ServerAuthenticationConverter

Update changes for ServerAuthenticationConverter to be passive.

Issue: gh-5338
This commit is contained in:
Rob Winch
2018-08-18 19:54:26 -05:00
parent b6afe66d32
commit e3eaa99ad0
8 changed files with 51 additions and 15 deletions

View File

@@ -61,7 +61,7 @@ public class AuthenticationWebFilterTests {
public void setup() {
this.filter = new AuthenticationWebFilter(this.authenticationManager);
this.filter.setAuthenticationSuccessHandler(this.successHandler);
this.filter.setAuthenticationConverter(this.authenticationConverter);
this.filter.setServerAuthenticationConverter(this.authenticationConverter);
this.filter.setSecurityContextRepository(this.securityContextRepository);
this.filter.setAuthenticationFailureHandler(this.failureHandler);
}