<C extends Credential> boolean |
CredentialStore.exists(String credentialAlias,
Class<C> credentialType) |
Check whether credential store has an entry associated with the given credential alias of specified credential type.
|
<C extends Credential> C |
CredentialStore.retrieve(String credentialAlias,
Class<C> credentialType) |
Retrieve credential stored in the store under the key and of the credential type
|
<C extends Credential> void |
CredentialStore.store(String credentialAlias,
C credential) |
Store credential to the store under the given alias.
|
<C extends Credential> void |
CredentialStore.store(String credentialAlias,
C credential,
CredentialStore.ProtectionParameter protectionParameter) |
Store credential to the store under the given alias.
|
abstract void |
CredentialStoreSpi.store(String credentialAlias,
Credential credential,
CredentialStore.ProtectionParameter protectionParameter) |
Store credential to the credential store service under the given alias.
|