requiresLogoutMatcher naming polish

Issue: gh-4822
This commit is contained in:
Rob Winch 2017-11-14 16:23:54 -06:00
parent c1f94156f9
commit 5f79fdd3eb
2 changed files with 4 additions and 4 deletions

View File

@ -748,7 +748,7 @@ public class ServerHttpSecurity {
}
public LogoutSpec requiresLogout(ServerWebExchangeMatcher requiresLogout) {
this.logoutWebFilter.setRequiresLogout(requiresLogout);
this.logoutWebFilter.setRequiresLogoutMatcher(requiresLogout);
return this;
}

View File

@ -90,8 +90,8 @@ public class LogoutWebFilter implements WebFilter {
this.logoutHandler = logoutHandler;
}
public void setRequiresLogout(ServerWebExchangeMatcher serverWebExchangeMatcher) {
Assert.notNull(serverWebExchangeMatcher, "serverWebExchangeMatcher must not be null");
this.requiresLogout = serverWebExchangeMatcher;
public void setRequiresLogoutMatcher(ServerWebExchangeMatcher requiresLogoutMatcher) {
Assert.notNull(requiresLogoutMatcher, "requiresLogoutMatcher must not be null");
this.requiresLogout = requiresLogoutMatcher;
}
}