| Package | Description |
|---|---|
| oracle.fmwplatform.credentials.credential | |
| oracle.fmwplatform.credentials.wallet |
| Modifier and Type | Class and Description |
|---|---|
class |
PasswordOnlyCredential
Implementation class of the abstract Credential class.
|
class |
UsernamePasswordCredential
Implementation class of the abstract Credential class.
|
| Modifier and Type | Method and Description |
|---|---|
Credential |
Credentials.getCredential(String alias) |
Credential |
CredentialBuilder.getCredential(String alias)
Retrieve the credential with the provided alias from the underlying credential store.
|
Credential |
CredentialStore.getCredential(String alias)
Returns the credential from the wallet store with the provided alias.
|
static Credential |
CredentialFactory.getInstance(String alias, char[] password)
Return a new instance of Credential object.
|
static Credential |
CredentialFactory.getInstance(String alias, String userName, char[] password)
Return a new instance of Credential object.
|
| Modifier and Type | Method and Description |
|---|---|
List<Credential> |
Credentials.getCredentialsAsList()
Return the list of credential objects that are currently stored in the Credentials object.
|
Iterator<Credential> |
Credentials.iterator()
An iterator over the internal Credential collection.
|
| Modifier and Type | Method and Description |
|---|---|
Credentials |
Credentials.setCredential(Credential cred)
Store a credential to the internal credentials HashMap.
|
| Modifier and Type | Method and Description |
|---|---|
Credential |
UsernamePasswordKeyStoreBuilder.credentialToKey(Credential credential) |
Credential |
WalletManager.get(String walletDirectory, char[] walletPassword, String alias)
Retireves a credential from a wallet.
|
Credential |
WalletManager.get(String walletDirectory, String alias)
Retireves a credential from a wallet.
|
Credential |
WalletStoreProvider.getCredential(String alias) |
Credential |
Wallet.getCredential(String alias)
Retrieve the credential from the underlying wallet that matches the alias.
|
Credential |
FMWWallet.getCredential(String alias) |
Credential |
UsernamePasswordKeyStoreBuilder.getKeyFromKeyStore(String alias, oracle.security.pki.OracleSecretStore secretStore) |
Credential |
StringKeyStoreBuilder.getKeyFromKeyStore(String alias, oracle.security.pki.OracleSecretStore secretStore) |
Credential |
KeyStoreBuilder.getKeyFromKeyStore(String alias, oracle.security.pki.OracleSecretStore secretStore)
Retrieves a key form a key store.
|
Credential |
UsernamePasswordKeyStoreBuilder.keyToCredential(Credential key) |
Credential |
StringKeyStoreBuilder.keyToCredential(String key) |
Credential |
KeyStoreBuilder.keyToCredential(T key)
Converts a key to a credential.
|
| Modifier and Type | Method and Description |
|---|---|
List<Credential> |
UsernamePasswordKeyStoreBuilder.getKeysFromKeyStore(oracle.security.pki.OracleSecretStore secretStore) |
| Modifier and Type | Method and Description |
|---|---|
Credential |
UsernamePasswordKeyStoreBuilder.credentialToKey(Credential credential) |
String |
StringKeyStoreBuilder.credentialToKey(Credential credential) |
T |
KeyStoreBuilder.credentialToKey(Credential credential)
Convert a credential to a key value.
|
Credential |
UsernamePasswordKeyStoreBuilder.keyToCredential(Credential key) |
void |
UsernamePasswordKeyStoreBuilder.persistKeyToKeyStore(String alias, Credential key, oracle.security.pki.OracleSecretStore secretStore) |
void |
WalletManager.printCredential(Credential credential)
Displays the passed credentials.
|
void |
WalletManager.printCredential(Credential credential, String passwordCover)
Displays the passed credentials.
|
void |
WalletStoreProvider.setCredential(Credential cred)
Sets a credential to the managed wallet.
|
void |
Wallet.setCredential(Credential cred)
Persist a credential to the underlying wallet.
|
void |
FMWWallet.setCredential(Credential cred) |