Package com.sun.identity.idm.server
Class JAXRPCObjectImplEventListener
- java.lang.Object
-
- com.sun.identity.idm.server.JAXRPCObjectImplEventListener
-
- All Implemented Interfaces:
IdEventListener
public class JAXRPCObjectImplEventListener extends Object implements IdEventListener
-
-
Constructor Summary
Constructors Constructor Description JAXRPCObjectImplEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidallIdentitiesChanged()The 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.
-
-
-
Method Detail
-
identityChanged
public void identityChanged(String universalId)
Description copied from interface:IdEventListenerThis method is called back for all identities that are modified in a repository.- Specified by:
identityChangedin interfaceIdEventListener- Parameters:
universalId- Universal Identifier of the identity.
-
identityDeleted
public void identityDeleted(String universalId)
Description copied from interface:IdEventListenerThis 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- Specified by:
identityDeletedin interfaceIdEventListener- Parameters:
universalId- Univerval Identifier
-
identityRenamed
public void identityRenamed(String universalId)
Description copied from interface:IdEventListenerThis method is called for all identities that are renamed in a repository. The universal identifier of the identity is passed in as an argument- Specified by:
identityRenamedin interfaceIdEventListener- Parameters:
universalId- Universal Identifier
-
allIdentitiesChanged
public void allIdentitiesChanged()
Description copied from interface:IdEventListenerThe method is called when all identities in the repository are changed. This could happen due to a organization deletion or permissions change etc- Specified by:
allIdentitiesChangedin interfaceIdEventListener
-
-