Skip to content

Polish variable name #45308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ public Jwt getJwt() {
return this.jwt;
}

private final Opaquetoken opaqueToken = new Opaquetoken();
private final Opaquetoken opaquetoken = new Opaquetoken();

public Opaquetoken getOpaquetoken() {
return this.opaqueToken;
return this.opaquetoken;
}

public static class Jwt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ static class OpaqueTokenIntrospectionClientConfiguration {
@Bean
@ConditionalOnProperty(name = "spring.security.oauth2.resourceserver.opaquetoken.introspection-uri")
SpringReactiveOpaqueTokenIntrospector opaqueTokenIntrospector(OAuth2ResourceServerProperties properties) {
OAuth2ResourceServerProperties.Opaquetoken opaqueToken = properties.getOpaquetoken();
return SpringReactiveOpaqueTokenIntrospector.withIntrospectionUri(opaqueToken.getIntrospectionUri())
.clientId(opaqueToken.getClientId())
.clientSecret(opaqueToken.getClientSecret())
OAuth2ResourceServerProperties.Opaquetoken opaquetoken = properties.getOpaquetoken();
return SpringReactiveOpaqueTokenIntrospector.withIntrospectionUri(opaquetoken.getIntrospectionUri())
.clientId(opaquetoken.getClientId())
.clientSecret(opaquetoken.getClientSecret())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ static class OpaqueTokenIntrospectionClientConfiguration {
@Bean
@ConditionalOnProperty(name = "spring.security.oauth2.resourceserver.opaquetoken.introspection-uri")
SpringOpaqueTokenIntrospector opaqueTokenIntrospector(OAuth2ResourceServerProperties properties) {
OAuth2ResourceServerProperties.Opaquetoken opaqueToken = properties.getOpaquetoken();
return SpringOpaqueTokenIntrospector.withIntrospectionUri(opaqueToken.getIntrospectionUri())
.clientId(opaqueToken.getClientId())
.clientSecret(opaqueToken.getClientSecret())
OAuth2ResourceServerProperties.Opaquetoken opaquetoken = properties.getOpaquetoken();
return SpringOpaqueTokenIntrospector.withIntrospectionUri(opaquetoken.getIntrospectionUri())
.clientId(opaquetoken.getClientId())
.clientSecret(opaquetoken.getClientSecret())
.build();
}

Expand Down