Add RedirectAuthenticationSuccessHandler(String)

This commit is contained in:
Rob Winch 2017-09-11 22:52:25 -05:00
parent a0a0a32bda
commit 582a59e583
1 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,12 @@ public class RedirectAuthenticationSuccessHandler implements AuthenticationSucce
private RedirectStrategy redirectStrategy = new DefaultRedirectStrategy();
public RedirectAuthenticationSuccessHandler() {}
public RedirectAuthenticationSuccessHandler(String location) {
this.location = URI.create(location);
}
@Override
public Mono<Void> success(Authentication authentication, WebFilterExchange webFilterExchange) {
ServerWebExchange exchange = webFilterExchange.getExchange();