Administration Console Online Help

Previous Next Open TOC in new window
Content starts here

Workflow Task : Details

Configuration Options     Related Topics

This page displays the status information related to this workflow task.

Configuration Options

Name Description
Workflow ID

Each workflow has a unique id.

MBean Attribute:
WorkflowTaskRuntimeMBean.WorkflowId

Type

Returns a string that can be used to identify the different types of workflows.

MBean Attribute:
WorkflowTaskRuntimeMBean.WorkflowType

Target

Returns the target that was specified when the workflow was created. It will typically be either the name of the domain, of one or more clusters, or one or more servers.

MBean Attribute:
WorkflowTaskRuntimeMBean.WorkflowTarget

Status

The status of this task.

MBean Attribute:
TaskRuntimeMBean.Status

Can Resume

It is possible to resume (execute or revert) a workflow if it was already executed and is in a FAIL, REVERT_FAIL, CANCELED or REVERT_CANCELED state.

MBean Attribute:
WorkflowTaskRuntimeMBean.canResume

# of Completed Commands

Number of completed commands in the workflow. Together with {@code getNumTotalCommands()} defines kind of progress information.

MBean Attribute:
WorkflowTaskRuntimeMBean.NumCompletedCommands

# of Total Commands

Number of all commands in the workflow. Together with {@code getNumCompletedCommands()} defines kind of progress information.

MBean Attribute:
WorkflowTaskRuntimeMBean.NumTotalCommands

Progress String

Human-readable message containing information about the current workflow progress.

MBean Attribute:
WorkflowTaskRuntimeMBean.ProgressString

Next Execute Step

The next step that will be executed if the workflow is eligible to be resumed and the user were to call execute on it.

MBean Attribute:
WorkflowTaskRuntimeMBean.NextExecuteStep

Next Revert Step

Get the next step that will be reverted if the workflow is eligible to be resumed and the user were to call revert on it.

MBean Attribute:
WorkflowTaskRuntimeMBean.NextRevertStep

Begin Time

The time at which this task was started.

MBean Attribute:
TaskRuntimeMBean.BeginTime

End Time

The time at which this task was completed.

A value of -1 indicates that the task is currently running.

MBean Attribute:
TaskRuntimeMBean.EndTime

Exception

The exception that occurred while performing this task.

Status History

Provides step by step information (log) about the progress of the workflow..

Related Topics


Back to Top