public interface ADFCredentialProvisioning extends CredentialProvisioning2
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<java.lang.String> |
keySet(java.lang.String mapName)
Internal: Applications should not use this method.
|
void |
storePasswordCredential(java.lang.String mapName,
java.lang.String key,
java.lang.String userName,
char[] password)
Internal: Applications should not use this method.
Stores an instanceof oracle.security.jps.service.credstore.PasswordCredential
for the specified credential key in the specified map.
|
void |
storePasswordCredential(java.lang.String mapName,
java.lang.String key,
java.lang.String userName,
char[] password,
java.lang.String description)
Internal: Applications should not use this method.
Stores an instanceof oracle.security.jps.service.credstore.PasswordCredential
for the specified credential key in the specified map.
|
removeCredential, storeCredential, storeSerializableCredentialremoveCredential, storeCredential, storeSerializableCredentialvoid storePasswordCredential(java.lang.String mapName,
java.lang.String key,
java.lang.String userName,
char[] password)
mapName - The name of the map. Must be non-null and length must be greater than zero.key - The name of the Credential key. Must be non-null and length must be greater than zero.userName - The name of the PasswordCredential. Must be non-null and size must be greater than zero.password - The password of the PasswordCredential. Must be non-null and size must be greater than zero.void storePasswordCredential(java.lang.String mapName,
java.lang.String key,
java.lang.String userName,
char[] password,
java.lang.String description)
mapName - The name of the map. Must be non-null and length must be greater than zero.key - The name of the Credential key. Must be non-null and length must be greater than zero.userName - The name of the PasswordCredential. Must be non-null and size must be greater than zero.password - The password of the PasswordCredential. Must be non-null and size must be greater than zero.description - The optional description field.java.util.Set<java.lang.String> keySet(java.lang.String mapName)
mapName - The name of the map for which keys are fetched. Must be non-null and length must be greater than zero.