Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.enterprise.deploy.spi.status
Interface DeploymentStatus  view DeploymentStatus download DeploymentStatus.java


public interface DeploymentStatus

The DeploymentStatus interface provides information about the progress of a deployment action.

Version:
$Rev: 46019 $ $Date: 2004-09-14 02:56:06 -0700 (Tue, 14 Sep 2004) $

Method Summary
 javax.enterprise.deploy.shared.ActionType getAction()
          Retrieve the deployment ActionType for this event.
 javax.enterprise.deploy.shared.CommandType getCommand()
          Retrieve the deployment CommandType of this event.
 java.lang.String getMessage()
          Retrieve any additional information about the status of this event.
 javax.enterprise.deploy.shared.StateType getState()
          Retrieve the StateType value.
 boolean isCompleted()
          A convience method to report if the operation is in the completed state.
 boolean isFailed()
          A convience method to report if the operation is in the failed state.
 boolean isRunning()
          A convience method to report if the operation is in the running state.
 

Method Detail

getState

public javax.enterprise.deploy.shared.StateType getState()
Retrieve the StateType value.


getCommand

public javax.enterprise.deploy.shared.CommandType getCommand()
Retrieve the deployment CommandType of this event.


getAction

public javax.enterprise.deploy.shared.ActionType getAction()
Retrieve the deployment ActionType for this event.


getMessage

public java.lang.String getMessage()
Retrieve any additional information about the status of this event.


isCompleted

public boolean isCompleted()
A convience method to report if the operation is in the completed state.


isFailed

public boolean isFailed()
A convience method to report if the operation is in the failed state.


isRunning

public boolean isRunning()
A convience method to report if the operation is in the running state.