Class PipelineExecutorTraceImpl
- java.lang.Object
-
- org.guvnor.ala.pipeline.execution.impl.PipelineExecutorTraceImpl
-
- All Implemented Interfaces:
PipelineExecutorTrace
public class PipelineExecutorTraceImpl extends Object implements PipelineExecutorTrace
Represents a pipeline execution recording.
-
-
Constructor Summary
Constructors Constructor Description PipelineExecutorTraceImpl()PipelineExecutorTraceImpl(PipelineExecutorTask task)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPipelineId()Shortcut to the pipeline id related with this trace.PipelineExecutorTaskgetTask()Gets the task that was executed.StringgetTaskId()Shortcut to the task id.
-
-
-
Constructor Detail
-
PipelineExecutorTraceImpl
public PipelineExecutorTraceImpl()
-
PipelineExecutorTraceImpl
public PipelineExecutorTraceImpl(PipelineExecutorTask task)
-
-
Method Detail
-
getTaskId
public String getTaskId()
Shortcut to the task id.- Specified by:
getTaskIdin interfacePipelineExecutorTrace- Returns:
- returns the id of the internal task.
-
getPipelineId
public String getPipelineId()
Description copied from interface:PipelineExecutorTraceShortcut to the pipeline id related with this trace.- Specified by:
getPipelineIdin interfacePipelineExecutorTrace- Returns:
- returns the pipeline id of the pipeline related with this trace.
-
getTask
public PipelineExecutorTask getTask()
Description copied from interface:PipelineExecutorTraceGets the task that was executed.- Specified by:
getTaskin interfacePipelineExecutorTrace- Returns:
- returns the internal task.
-
-