UnauthenticatedServerOAuth2AuthorizedClientRepository->UnAuthenticatedServerOAuth2AuthorizedClientRepository

Issue: gh-5817
This commit is contained in:
Rob Winch 2018-09-07 15:29:35 -05:00
parent 11ea92ef1c
commit 26e577b0fa
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ import java.util.Map;
* @author Rob Winch
* @since 5.1
*/
public class UnauthenticatedServerOAuth2AuthorizedClientRepository implements ServerOAuth2AuthorizedClientRepository {
public class UnAuthenticatedServerOAuth2AuthorizedClientRepository implements ServerOAuth2AuthorizedClientRepository {
private final AuthenticationTrustResolver trustResolver = new AuthenticationTrustResolverImpl();
private Map<String, OAuth2AuthorizedClient> clientRegistrationIdToAuthorizedClient = new HashMap<>();

View File

@ -36,9 +36,9 @@ import static org.assertj.core.api.Assertions.*;
/**
* @author Rob Winch
*/
public class UnauthenticatedServerOAuth2AuthorizedClientRepositoryTests {
private UnauthenticatedServerOAuth2AuthorizedClientRepository repository =
new UnauthenticatedServerOAuth2AuthorizedClientRepository();
public class UnAuthenticatedServerOAuth2AuthorizedClientRepositoryTests {
private UnAuthenticatedServerOAuth2AuthorizedClientRepository repository =
new UnAuthenticatedServerOAuth2AuthorizedClientRepository();
private ClientRegistration clientRegistration = TestClientRegistrations.clientCredentials().build();