void |
CredentialStore.initialize(Map<String,String> attributes,
CredentialStore.ProtectionParameter protectionParameter) |
Initialize Credential Store service with given attributes.
|
void |
CredentialStore.initialize(Map<String,String> attributes,
CredentialStore.ProtectionParameter protectionParameter,
Provider[] providers) |
Initialize Credential Store service with given attributes.
|
abstract void |
CredentialStoreSpi.initialize(Map<String,String> attributes,
CredentialStore.ProtectionParameter protectionParameter,
Provider[] providers) |
Initialize credential store service with given attributes.
|
<C extends Credential> C |
CredentialStore.retrieve(String credentialAlias,
Class<C> credentialType,
String credentialAlgorithm,
AlgorithmParameterSpec parameterSpec,
CredentialStore.ProtectionParameter protectionParameter) |
Retrieve credential stored in the store under the key and of the credential type.
|
abstract <C extends Credential> C |
CredentialStoreSpi.retrieve(String credentialAlias,
Class<C> credentialType,
String credentialAlgorithm,
AlgorithmParameterSpec parameterSpec,
CredentialStore.ProtectionParameter protectionParameter) |
Retrieve the credential stored in the store under the given alias, matching the given criteria.
|
<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.
|