use of com.nimbusds.jose.jwk.JWKSelector in project spring-security by spring-projects.
the class ReactiveRemoteJWKSourceTests method setup.
// @formatter:on
@BeforeEach
public void setup() {
this.server = new MockWebServer();
this.source = new ReactiveRemoteJWKSource(this.server.url("/").toString());
this.server.enqueue(new MockResponse().setBody(this.keys));
this.selector = new JWKSelector(this.matcher);
}
Aggregations