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) { public LogoutSpec requiresLogout(ServerWebExchangeMatcher requiresLogout) {
this.logoutWebFilter.setRequiresLogout(requiresLogout); this.logoutWebFilter.setRequiresLogoutMatcher(requiresLogout);
return this; return this;
} }

View File

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