com.sun.n1.sps.model.executor
Interface RunningPlanBean


public interface RunningPlanBean

Contains information about a running or a complete plan run.


Method Summary
 java.util.Date getCompleteDate()
          Returns the date on which the plan completed.
 java.lang.String getDescription()
          Returns the description of this plan.
 ExecutionPlanID getExecutionPlanID()
          Returns the ExecutionPlanID object.
 boolean getIsPreflight()
          Returns the Preflight flag
 boolean getIsRunning()
          Return true if the plan is running, false otherwise.
 java.lang.String getName()
          Returns the name of this plan.
 java.util.Date getStartDate()
          Returns the date on which the plan was started.
 TaskID getTaskID()
          Returns the TaskID object.
 TaskInfo getTaskInfo()
          Returns the TaskInfo.
 TaskStatus getTaskStatus()
          Returns the TargetStatus for this plan.
 

Method Detail

getTaskID

TaskID getTaskID()
Returns the TaskID object.

Returns:
A TaskID object which may be null.

getTaskInfo

TaskInfo getTaskInfo()
Returns the TaskInfo.

Returns:
A TaskInfo object which may be null.

getIsPreflight

boolean getIsPreflight()
Returns the Preflight flag

Returns:
True if the RunLevel is RunLevel.PREFLIGHT, false if the RunLevel.ACTUAL.

getExecutionPlanID

ExecutionPlanID getExecutionPlanID()
Returns the ExecutionPlanID object.

Returns:
A non-null ExecutionPlanID.

getTaskStatus

TaskStatus getTaskStatus()
Returns the TargetStatus for this plan.

Returns:
The TargetStatus for this plan.

getStartDate

java.util.Date getStartDate()
Returns the date on which the plan was started.

Returns:
The date on which the plan was started.

getCompleteDate

java.util.Date getCompleteDate()
Returns the date on which the plan completed.

Returns:
The date on which the plan completed.

getIsRunning

boolean getIsRunning()
Return true if the plan is running, false otherwise.

Returns:
True if the plan is running, false otherwise.

getName

java.lang.String getName()
Returns the name of this plan.

Returns:
the name of this plan.

getDescription

java.lang.String getDescription()
Returns the description of this plan.

Returns:
the description of this plan.