Package com.boomi.connector.api
Interface PrivateKeyStore
-
public interface PrivateKeyStoreBase interface for java KeyStore wrapper object containing private key entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyStoregetKeyStore()Returns a java KeyStore object.StringgetPassword()Returns the KeyStore password as a String.ObjectgetUniqueId()Returns a unique id for this PrivateKeyStore.
-
-
-
Method Detail
-
getKeyStore
KeyStore getKeyStore()
Returns a java KeyStore object. This KeyStore will contain a single private key entry
-
getPassword
String getPassword()
Returns the KeyStore password as a String.
-
getUniqueId
Object getUniqueId()
Returns a unique id for this PrivateKeyStore. The returned object will have validObject.toString(),Object.hashCode(), andObject.equals(java.lang.Object)method implementations and may therefore be used for things like comparing PrivateKeyStores.
-
-