io.spiffe.workloadapi.JwtSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-spiffe-core Show documentation
Show all versions of java-spiffe-core Show documentation
Core functionality to fetch, process and validate X.509 and JWT SVIDs and Bundles from the Workload API.
package io.spiffe.workloadapi;
import io.spiffe.bundle.BundleSource;
import io.spiffe.bundle.jwtbundle.JwtBundle;
import io.spiffe.svid.jwtsvid.JwtSvidSource;
import java.io.Closeable;
/**
* Source of JWT SVIDs and Bundles.
* @see JwtSvidSource
* @see BundleSource
* @see JwtBundle
*/
public interface JwtSource extends JwtSvidSource, BundleSource, Closeable {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy