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 void
allIdentitiesChanged()
The method is called when all identities in the repository are changed.void
identityChanged(String universalId)
This method is called back for all identities that are modified in a repository.void
identityDeleted(String universalId)
This method is called back for all identities that are deleted from a repository.void
identityRenamed(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:IdEventListener
This method is called back for all identities that are modified in a repository.- Specified by:
identityChanged
in interfaceIdEventListener
- Parameters:
universalId
- Universal Identifier of the identity.
-
identityDeleted
public void identityDeleted(String universalId)
Description copied from interface:IdEventListener
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- Specified by:
identityDeleted
in interfaceIdEventListener
- Parameters:
universalId
- Univerval Identifier
-
identityRenamed
public void identityRenamed(String universalId)
Description copied from interface:IdEventListener
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- Specified by:
identityRenamed
in interfaceIdEventListener
- Parameters:
universalId
- Universal Identifier
-
allIdentitiesChanged
public void allIdentitiesChanged()
Description copied from interface:IdEventListener
The 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:
allIdentitiesChanged
in interfaceIdEventListener
-
-