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

javapns.communication.WrappedKeystore Maven / Gradle / Ivy

The newest version!
package javapns.communication;

import java.io.*;
import java.security.*;

/**
 * Special wrapper for a KeyStore.
 * 
 * @author Sylvain Pedneault
 */
class WrappedKeystore extends InputStream {

	private final KeyStore keystore;


	public WrappedKeystore(KeyStore keystore) {
		this.keystore = keystore;
	}


	@Override
	public int read() throws IOException {
		return 0;
	}


	public KeyStore getKeystore() {
		return keystore;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy