Creates a new instance of DeploymentStatusImpl this.progressObject = progressObject;
this.progressObject = progressObject;
Retrieve the deployment ActionType for this event.returnthe ActionType Object return ActionType.EXECUTE;
return ActionType.EXECUTE;
Retrieve the deployment CommandType of this event.returnthe CommandType Object if (progressObject!=null) { return progressObject.getCommandType(); } else { return commandType; }
if (progressObject!=null) { return progressObject.getCommandType(); } else { return commandType; }
Retrieve any additional information about the status of this event.returnmessage text return lastMsg;
return lastMsg;
Retrieve the StateType value.returnthe StateType object return stateType;
return stateType;
A convience method to report if the operation is in the completed state.returntrue if this command has completed successfully return StateType.COMPLETED.equals(stateType);
return StateType.COMPLETED.equals(stateType);
A convience method to report if the operation is in the failed state.returntrue if this command has failed return StateType.FAILED.equals(stateType);
return StateType.FAILED.equals(stateType);
A convience method to report if the operation is in the running state.returntrue if this command is still running return StateType.RUNNING.equals(stateType);
return StateType.RUNNING.equals(stateType);
this.commandType = commandType;
lastMsg = message;
this.stateType = stateType;