All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.auth0.jwk.JwkProvider Maven / Gradle / Ivy

There is a newer version: 0.22.1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy