FileDocCategorySizeDatePackage
UserMgmtEventListener.javaAPI DocGlassfish v2 API3269Fri May 04 22:33:36 BST 2007com.sun.enterprise.admin.event

UserMgmtEventListener

public interface UserMgmtEventListener implements com.sun.enterprise.admin.event.AdminEventListener
Listener interface to handle auth realm user management events.

Fields Summary
Constructors Summary
Methods Summary
public voiduserAdded(UserMgmtEvent event)
user added. It is called whenever a UserMgmtEvent with action of UserMgmtEvent.ACTION_USERADD is received.

throws
AdminEventListenerException when the listener is unable to process the event.

public voiduserRemoved(UserMgmtEvent event)
user deleted. It is called whenever a UserMgmtEvent with action of UserMgmtEvent.ACTION_USERREMOVE is received.

throws
AdminEventListenerException when the listener is unable to process the event.

public voiduserUpdated(UserMgmtEvent event)
user updated (attributes change). It is called whenever a UserMgmtEvent with action of UserMgmtEvent.ACTION_USERUPDATE is received.

throws
AdminEventListenerException when the listener is unable to process the event.