FileDocCategorySizeDatePackage
ProgressEvent.javaAPI DocGlassfish v2 API3219Fri May 04 22:35:52 BST 2007javax.enterprise.deploy.spi.status

ProgressEvent

public class ProgressEvent extends EventObject
An event which indicates that a deployment status change has occurred.
see
ProgressListener
see
ProgressObject

Fields Summary
private DeploymentStatus
statuscode
private javax.enterprise.deploy.spi.TargetModuleID
targetModuleID
Constructors Summary
public ProgressEvent(Object source, javax.enterprise.deploy.spi.TargetModuleID targetModuleID, DeploymentStatus sCode)
Creates a new object representing a deployment progress event.

param
source the object on which the Event initially occurred.
param
sCode the object containing the status information.

      super(source);
      this.statuscode = sCode;
      this.targetModuleID = targetModuleID;
   
Methods Summary
public DeploymentStatusgetDeploymentStatus()
Retrieve the status information.

return
the object containing the status information.

      return statuscode;
   
public javax.enterprise.deploy.spi.TargetModuleIDgetTargetModuleID()
Retrieve the TargetModuleID for this event

return
the object containing the TargetModuleID

     return targetModuleID;