浏览代码

UnauthenticatedServerOAuth2AuthorizedClientRepository->UnAuthenticatedServerOAuth2AuthorizedClientRepository

Issue: gh-5817
Rob Winch 7 年之前
父节点
当前提交
26e577b0fa

+ 1 - 1
oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/server/UnauthenticatedServerOAuth2AuthorizedClientRepository.java → oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/server/UnAuthenticatedServerOAuth2AuthorizedClientRepository.java

@@ -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<>();

+ 3 - 3
oauth2/oauth2-client/src/test/java/org/springframework/security/oauth2/client/web/server/UnauthenticatedServerOAuth2AuthorizedClientRepositoryTests.java → oauth2/oauth2-client/src/test/java/org/springframework/security/oauth2/client/web/server/UnAuthenticatedServerOAuth2AuthorizedClientRepositoryTests.java

@@ -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();