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

de.cidaas.jwk.JwkProvider Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package de.cidaas.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