com.nimbusds.jose.jwk.loader.FileInputStreamSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jwkset-loader Show documentation
Show all versions of nimbus-jwkset-loader Show documentation
JWK set loader with PKCS#11 support for Hardware Security Modules (HSM)
and smart cards.
package com.nimbusds.jose.jwk.loader;
import java.io.InputStream;
/**
* File input stream source.
*/
public interface FileInputStreamSource {
/**
* Returns an input stream for the specified file.
*
* @param filename The file name. Must not be {@code null}.
*
* @return The input stream, {@code null} if the file doesn't exist or
* couldn't be accessed.
*/
InputStream getInputSteam(final String filename);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy