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

BaseDeployEventListener

public interface BaseDeployEventListener implements AdminEventListener
This is the listener interface that should be implemented to handle all deployment events. A deployment event is one of - deployed, undeployed, redeployed, enabled or disabled on J2ee application, standalone J2EE module or application server resource.

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

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

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

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

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

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

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

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

public voidapplicationReferenceAdded(BaseDeployEvent 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(BaseDeployEvent 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(BaseDeployEvent event)
Invoked when a J2EE application is undeployed.

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

public voidmoduleDeployed(BaseDeployEvent event)
Invoked when a standalone J2EE module is deployed.

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

public voidmoduleDisabled(BaseDeployEvent event)
Invoked when a standalone J2EE module is disabled.

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

public voidmoduleEnabled(BaseDeployEvent event)
Invoked when a standalone J2EE module is enabled.

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

public voidmoduleRedeployed(BaseDeployEvent event)
Invoked when a standalone J2EE module is redeployed.

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

public voidmoduleReferenceAdded(BaseDeployEvent event)
Invoked when a reference is created from a server instance (or cluster) to a particular module.

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

public voidmoduleReferenceRemoved(BaseDeployEvent event)
Invoked when a reference is removed from a server instance (or cluster) to a particular module.

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

public voidmoduleUndeployed(BaseDeployEvent event)
Invoked when a standalone J2EE module is undeployed.

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

public voidresourceDeployed(BaseDeployEvent event)
Invoked when an application server resource is deployed.

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

public voidresourceDisabled(BaseDeployEvent event)
Invoked when an application server resource is disabled.

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

public voidresourceEnabled(BaseDeployEvent event)
Invoked when an application server resource is enabled.

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

public voidresourceRedeployed(BaseDeployEvent event)
Invoked when an application server resource is redeployed.

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

public voidresourceReferenceAdded(BaseDeployEvent event)
Invoked when a resource reference is created from a server instance (or cluster) to a particular resource.

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

public voidresourceReferenceRemoved(BaseDeployEvent event)
Invoked when a resource reference is removed from a server instance (or cluster) to a particular resource.

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

public voidresourceUndeployed(BaseDeployEvent event)
Invoked when an application server resource is undeployed.

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