Package com.boomi.connector.api
Interface PrivateKeyStore
-
public interface PrivateKeyStore
Base interface for java KeyStore wrapper object containing private key entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyStore
getKeyStore()
Returns a java KeyStore object.String
getPassword()
Returns the KeyStore password as a String.Object
getUniqueId()
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.
-
-