mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-07 19:22:14 +00:00
Made JwtConfigurer fluent
Adjusted return type of #decoder(JwtDecoder) and #jwkSetUri(String) to return the JwtDecoder itself. Added new method #and() that returns the enclosing OAuth2ResourceServerConfigurer. Fixes gh-5595
This commit is contained in:
parent
973af94b42
commit
14a7387190
@ -199,13 +199,17 @@ public final class OAuth2ResourceServerConfigurer<H extends HttpSecurityBuilder<
|
|||||||
this.context = context;
|
this.context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuth2ResourceServerConfigurer<H> decoder(JwtDecoder decoder) {
|
public JwtConfigurer decoder(JwtDecoder decoder) {
|
||||||
this.decoder = decoder;
|
this.decoder = decoder;
|
||||||
return OAuth2ResourceServerConfigurer.this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public OAuth2ResourceServerConfigurer<H> jwkSetUri(String uri) {
|
public JwtConfigurer jwkSetUri(String uri) {
|
||||||
this.decoder = new NimbusJwtDecoderJwkSupport(uri);
|
this.decoder = new NimbusJwtDecoderJwkSupport(uri);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public OAuth2ResourceServerConfigurer<H> and() {
|
||||||
return OAuth2ResourceServerConfigurer.this;
|
return OAuth2ResourceServerConfigurer.this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user