com.ibm.portal.portlet.service.credentialvault.spi
Interface UserIDChangeListener


public interface UserIDChangeListener

Vault Adapter Extension that enables the adapter to keep the user identifiers up to date. If a custom implementation of VaultAdapter also implements this interface, it is notified if a user identifier has changed and can replace the old identifier (used in any secret to user mappings) with the new one, if necessary.

Since:
7.0
See Also:
VaultAdapter
Note:
This interface is designed to be implemented by clients.

Method Summary
 void userIdentifiableChanged(Identifiable oldID, Identifiable newID)
          This method is called to inform the vault adapter that a user's identifiable has changed.
 

Method Detail

userIdentifiableChanged

void userIdentifiableChanged(Identifiable oldID,
                             Identifiable newID)
                             throws CredentialVaultException
This method is called to inform the vault adapter that a user's identifiable has changed.

Parameters:
oldID - The previously used user identifiable
newID - The currently used user identifiable
Throws:
CredentialVaultException