Interface SecureCredentialsStore
public interface SecureCredentialsStore
-
Method Summary
Modifier and TypeMethodDescriptiongetSystemSecuredValues
(String externalSystemUniqueKey) Returns a map of the system-wide keys and values for the external system identified by the given key; the values are stored in the map in unencrypted formgetUserSecuredValues
(String externalSystemUniqueKey) Returns a map of keys and values for the external system identified by the given key for the current user; the values are stored in the map in unencrypted form.
-
Method Details
-
getSystemSecuredValues
Map<String,String> getSystemSecuredValues(String externalSystemUniqueKey) throws InsufficientPrivilegesException, ObjectNotFoundException Returns a map of the system-wide keys and values for the external system identified by the given key; the values are stored in the map in unencrypted form- Parameters:
externalSystemUniqueKey
-- Throws:
InsufficientPrivilegesException
ObjectNotFoundException
-
getUserSecuredValues
Map<String,String> getUserSecuredValues(String externalSystemUniqueKey) throws InsufficientPrivilegesException, ObjectNotFoundException Returns a map of keys and values for the external system identified by the given key for the current user; the values are stored in the map in unencrypted form.- Parameters:
externalSystemUniqueKey
-- Throws:
InsufficientPrivilegesException
ObjectNotFoundException
-