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

io.quarkus.oidc.runtime.RefreshableVerificationKeyResolver Maven / Gradle / Ivy

package io.quarkus.oidc.runtime;

import org.jose4j.keys.resolvers.VerificationKeyResolver;

import io.smallrye.mutiny.Uni;

public interface RefreshableVerificationKeyResolver extends VerificationKeyResolver {
    default Uni refresh() {
        return Uni.createFrom().voidItem();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy