UnauthenticatedServerOAuth2AuthorizedClientRepository->UnAuthenticatedServerOAuth2AuthorizedClientRepository
Issue: gh-5817
This commit is contained in:
parent
11ea92ef1c
commit
26e577b0fa
|
@ -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<>();
|
|
@ -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();
|
||||
|
Loading…
Reference in New Issue