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

com.nimbusds.jose.jwk.loader.FileInputStreamSource Maven / Gradle / Ivy

Go to download

JWK set loader with PKCS#11 support for Hardware Security Modules (HSM) and smart cards.

There is a newer version: 7.3
Show newest version
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