pl.chilldev.commons.jwt.jwk.FullUrlJwkProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-jwt Show documentation
Show all versions of commons-jwt Show documentation
JSON Web Tokens utilities.
The newest version!
/*
* This file is part of the ChillDev-Commons.
*
* @license http://mit-license.org/ The MIT license
* @copyright 2017 © by Rafał Wrzeszcz - Wrzasq.pl.
*/
package pl.chilldev.commons.jwt.jwk;
import java.net.MalformedURLException;
import java.net.URL;
import com.auth0.jwk.UrlJwkProvider;
/**
* Wrapper for URL-based JWK provider that does support keys in deeper locations.
*/
public class FullUrlJwkProvider extends UrlJwkProvider
{
/**
* Initializes JWK provider for given issue URL.
*
* @param issuer Issuer URL.
*/
public FullUrlJwkProvider(String issuer)
{
super(FullUrlJwkProvider.urlForIssuer(issuer));
}
/**
* Builds URL to JWKS file.
*
* @param issuer Issuer URL.
* @return JWKS file URL.
*/
private static URL urlForIssuer(String issuer)
{
try {
return new URL(issuer + "/.well-known/jwks.json");
} catch (MalformedURLException error) {
throw new IllegalArgumentException("Invalid JWKS URI.", error);
}
}
}