Java org.springframework.security.oauth2.provider.token.store.jwk JwkTokenStore fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.oauth2.provider.token.store.jwk JwkTokenStore fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.oauth2.provider.token.store.jwk JwkTokenStore.

The text is from its open source code.

Constructor

JwkTokenStore(String jwkSetUrl, AccessTokenConverter accessTokenConverter)
Creates a new instance using the provided URL as the location for the JWK Set and a custom AccessTokenConverter .
JwkTokenStore(String jwkSetUrl, JwtClaimsSetVerifier jwtClaimsSetVerifier)
Creates a new instance using the provided URL as the location for the JWK Set and a custom JwtClaimsSetVerifier .

Method

OAuth2AccessTokenreadAccessToken(String tokenValue)
Delegates to the internal instance JwtTokenStore#readAccessToken(String) .