Polish gh-8906

This commit is contained in:
Joe Grandja 2020-08-04 11:16:26 -04:00
parent 0ed919f072
commit 73e550a867
3 changed files with 3 additions and 3 deletions

View File

@ -132,7 +132,7 @@ public final class OidcClientInitiatedLogoutSuccessHandler extends SimpleUrlLogo
* placeholder, for example:
*
* <pre>
* handler.setPostLogoutRedirectUriTemplate("{baseUrl}");
* handler.setPostLogoutRedirectUri("{baseUrl}");
* </pre>
*
* will make so that {@code post_logout_redirect_uri} will be set to the base url for the client

View File

@ -150,7 +150,7 @@ public class OidcClientInitiatedServerLogoutSuccessHandler
* placeholder, for example:
*
* <pre>
* handler.setPostLogoutRedirectUriTemplate("{baseUrl}");
* handler.setPostLogoutRedirectUri("{baseUrl}");
* </pre>
*
* will make so that {@code post_logout_redirect_uri} will be set to the base url for the client

View File

@ -112,7 +112,7 @@ public class WebClientReactiveAuthorizationCodeTokenResponseClientTests {
// this.exception.expect(IllegalArgumentException.class);
//
// String redirectUri = "http:\\example.com";
// when(this.clientRegistration.getRedirectUriTemplate()).thenReturn(redirectUri);
// when(this.clientRegistration.getRedirectUri()).thenReturn(redirectUri);
//
// this.tokenResponseClient.getTokenResponse(
// new OAuth2AuthorizationCodeGrantRequest(this.clientRegistration, this.authorizationExchange));