Oracle Fusion Middleware Java API Reference for Oracle ADF Share
11g Release 1 (11.1.1.7.0)

E10686-08

oracle.adfinternal.share.security.credentialstore.spi
Interface ADFCredentialProvisioning

All Superinterfaces:
CredentialProvisioning, CredentialProvisioning2
All Known Implementing Classes:
CSFCredentialStore

public interface ADFCredentialProvisioning
extends CredentialProvisioning2

Internal: Applications should not use this interface. An interface for adding credential based on map.


Method Summary
 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.
 
Methods inherited from interface oracle.adf.share.security.credentialstore.spi.CredentialProvisioning2
removeCredential, storeCredential, storeSerializableCredential
 
Methods inherited from interface oracle.adf.share.security.credentialstore.spi.CredentialProvisioning
removeCredential, storeCredential, storeSerializableCredential
 

Method Detail

storePasswordCredential

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.

Parameters:
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.

storePasswordCredential

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.

Parameters:
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.

keySet

java.util.Set<java.lang.String> keySet(java.lang.String mapName)
Internal: Applications should not use this method.

Parameters:
mapName - The name of the map for which keys are fetched. Must be non-null and length must be greater than zero.
Returns:
Set of all the keys for the CredentialMap identified by mapName.

Oracle Fusion Middleware Java API Reference for Oracle ADF Share
11g Release 1 (11.1.1.7.0)

E10686-08

Copyright © 1997, 2013, Oracle. All rights reserved.