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

ResourceDeployEventListener

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

Fields Summary
Constructors Summary
Methods Summary
public voidresourceDeployed(ResourceDeployEvent event)
Invoked when an application server resource is deployed.

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

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

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

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

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

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

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

public voidresourceReferenceAdded(ResourceDeployEvent 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(ResourceDeployEvent 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(ResourceDeployEvent event)
Invoked when an application server resource is undeployed.

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