FileDocCategorySizeDatePackage
ApplicationDeployEventListener.javaAPI DocGlassfish v2 API4738Fri May 04 22:33:34 BST 2007com.sun.enterprise.admin.event

ApplicationDeployEventListener

public interface ApplicationDeployEventListener implements AdminEventListener
This is the listener interface that should be implemented to handle all application deployment events (deployed, undeployed, redeployed, enabled and disabled).

Fields Summary
Constructors Summary
Methods Summary
public voidapplicationDeployed(ApplicationDeployEvent event)
Invoked when a J2EE application is deployed.

param
event the application deploy event
throws
AdminEventListenerException when the listener is unable to process the event.

public voidapplicationDisabled(ApplicationDeployEvent event)
Invoked when a J2EE application is disabled.

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

public voidapplicationEnabled(ApplicationDeployEvent event)
Invoked when a J2EE application is enabled.

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

public voidapplicationRedeployed(ApplicationDeployEvent event)
Invoked when a J2EE application is redeployed.

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

public voidapplicationReferenceAdded(ApplicationDeployEvent event)
Invoked when an application reference is created from a server instance (or cluster) to a particular application.

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

public voidapplicationReferenceRemoved(ApplicationDeployEvent event)
Invoked when a reference is removed from a server instance (or cluster) to a particular application.

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

public voidapplicationUndeployed(ApplicationDeployEvent event)
Invoked when a J2EE application is undeployed.

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