com.auth0.jwk.JwkProvider Maven / Gradle / Ivy
package com.auth0.jwk;
/**
* Provider of Jwk
*/
@SuppressWarnings("WeakerAccess")
public interface JwkProvider {
/**
* Returns a jwk using the kid value
* @param keyId value of kid found in JWT
* @return a jwk
* @throws SigningKeyNotFoundException if no jwk can be found using the given kid
*/
Jwk get(String keyId) throws JwkException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy