FileDocCategorySizeDatePackage
StandardDeploymentPhaseContext.javaAPI DocGlassfish v2 API3218Fri May 04 22:34:38 BST 2007com.sun.enterprise.deployment.phasing

StandardDeploymentPhaseContext

public class StandardDeploymentPhaseContext extends Hashtable implements DeploymentPhaseContext
Standard implementation of the @see DeploymentPhaseContext interface based on dynamic properties. All information can be store using the @see java.util.Hashtable get/set methods.
author
Jerome Dochez

Fields Summary
private com.sun.enterprise.deployment.backend.DeploymentRequest
req
private com.sun.enterprise.deployment.backend.DeploymentStatus
status
Constructors Summary
Methods Summary
public com.sun.enterprise.deployment.backend.DeploymentRequestgetDeploymentRequest()

return
the deployment request for this phase

        return req;
    
public com.sun.enterprise.deployment.backend.DeploymentStatusgetDeploymentStatus()

return
the deployemnt status for this phase

        return status;
    
public voidsetDeploymentRequest(com.sun.enterprise.deployment.backend.DeploymentRequest req)
Set the deployment request for this phase

        this.req = req;
    
public voidsetDeploymentStatus(com.sun.enterprise.deployment.backend.DeploymentStatus status)
Set the deployment status for this phase

        this.status = status;