Package com.sun.identity.idm
Interface IdEventListener
Represents the event listener interface that consumers of this API should
implement and register with the IdentityStore to receive
notifications.
-
Method Summary
Modifier and TypeMethodDescriptionvoidThe method is called when all identities in the repository are changed.voididentityChanged(String universalId) This method is called back for all identities that are modified in a repository.voididentityDeleted(String universalId) This method is called back for all identities that are deleted from a repository.voididentityRenamed(String universalId) This method is called for all identities that are renamed in a repository.default voididentityRenamed(String universalId, String previousUniversalId) This method is called for all identities that are renamed in a repository.
-
Method Details
-
identityChanged
This method is called back for all identities that are modified in a repository.- Parameters:
universalId- Universal Identifier of the identity.
-
identityDeleted
This method is called back for all identities that are deleted from a repository. The universal identifier of the identity is passed in as an argument- Parameters:
universalId- Univerval Identifier
-
identityRenamed
This method is called for all identities that are renamed in a repository. The universal identifier of the identity is passed in as an argument- Parameters:
universalId- Universal Identifier
-
identityRenamed
This method is called for all identities that are renamed in a repository. The previous and current universal identifier of the identity is passed in as an argument.- Parameters:
universalId- Universal IdentifierpreviousUniversalId- Previous Universal Identifier
-
allIdentitiesChanged
void allIdentitiesChanged()The method is called when all identities in the repository are changed. This could happen due to a organization deletion or permissions change etc
-