com.nimbusds.jose.jwk.source.JWKSetCacheRefreshEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jose-jwt Show documentation
Show all versions of nimbus-jose-jwt Show documentation
Java library for Javascript Object Signing and Encryption (JOSE) and
JSON Web Tokens (JWT)
package com.nimbusds.jose.jwk.source;
import com.nimbusds.jose.jwk.JWKSet;
/**
* Evaluates whether a JWK set cache requires refreshing.
*
* @author Thomas Rørvik Skjølberg
* @author Vladimir Dzhuvinov
* @version 2024-05-08
*/
public abstract class JWKSetCacheRefreshEvaluator {
/**
* Returns a force-refresh evaluator.
*
* @return The force-refresh evaluator.
*/
public static JWKSetCacheRefreshEvaluator forceRefresh() {
return ForceRefreshJWKSetCacheEvaluator.getInstance();
}
/**
* Returns a no-refresh evaluator.
*
* @return The no-refresh evaluator.
*/
public static JWKSetCacheRefreshEvaluator noRefresh() {
return NoRefreshJWKSetCacheEvaluator.getInstance();
}
/**
* Returns a reference comparison evaluator for the specified JWK set.
*
* @param jwtSet The JWK set.
*
* @return The reference comparison evaluator.
*/
public static JWKSetCacheRefreshEvaluator referenceComparison(final JWKSet jwtSet) {
return new ReferenceComparisonRefreshJWKSetEvaluator(jwtSet);
}
/**
* Returns {@code true} if refresh of the JWK set is required.
*
* @param jwkSet The JWK set. Must not be {@code null}.
*
* @return {@code true} if refresh is required, {@code false} if not.
*/
public abstract boolean requiresRefresh(final JWKSet jwkSet);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy