Package com.boomi.connector.api
Interface PublicKeyStore
-
public interface PublicKeyStore
Base interface for java KeyStore wrapper object containing public key entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyStore
getKeyStore()
Returns a java KeyStore object.Object
getUniqueId()
Returns a unique id for this PublicKeyStore.
-
-
-
Method Detail
-
getKeyStore
KeyStore getKeyStore()
Returns a java KeyStore object. This KeyStore will contain a single public key entry
-
getUniqueId
Object getUniqueId()
Returns a unique id for this PublicKeyStore. 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 PublicKeyStores.
-
-