Package org.gbif.api.model.pipelines
Class PipelineExecution
- java.lang.Object
-
- org.gbif.api.model.pipelines.PipelineExecution
-
- All Implemented Interfaces:
Serializable
public class PipelineExecution extends Object implements Serializable
Models an execution of a pipeline that can include one or more steps.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PipelineExecution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PipelineExecutionaddStep(PipelineStep step)booleanequals(Object o)LocalDateTimegetCreated()StringgetCreatedBy()longgetKey()StringgetRemarks()StringgetRerunReason()Set<PipelineStep>getSteps()Set<StepType>getStepsToRun()inthashCode()booleanisFinished()PipelineExecutionsetCreated(LocalDateTime created)PipelineExecutionsetCreatedBy(String createdBy)PipelineExecutionsetFinished(boolean finished)PipelineExecutionsetKey(long key)PipelineExecutionsetRemarks(String remarks)PipelineExecutionsetRerunReason(String rerunReason)PipelineExecutionsetSteps(Set<PipelineStep> steps)PipelineExecutionsetStepsToRun(Set<StepType> stepsToRun)StringtoString()
-
-
-
Constructor Detail
-
PipelineExecution
public PipelineExecution()
-
-
Method Detail
-
getKey
public long getKey()
-
setKey
public PipelineExecution setKey(long key)
-
getStepsToRun
public Set<StepType> getStepsToRun()
-
setStepsToRun
public PipelineExecution setStepsToRun(Set<StepType> stepsToRun)
-
getRerunReason
public String getRerunReason()
-
setRerunReason
public PipelineExecution setRerunReason(String rerunReason)
-
getRemarks
public String getRemarks()
-
setRemarks
public PipelineExecution setRemarks(String remarks)
-
getCreated
public LocalDateTime getCreated()
-
setCreated
public PipelineExecution setCreated(LocalDateTime created)
-
getCreatedBy
public String getCreatedBy()
-
setCreatedBy
public PipelineExecution setCreatedBy(String createdBy)
-
getSteps
public Set<PipelineStep> getSteps()
-
setSteps
public PipelineExecution setSteps(Set<PipelineStep> steps)
-
addStep
public PipelineExecution addStep(PipelineStep step)
-
isFinished
public boolean isFinished()
-
setFinished
public PipelineExecution setFinished(boolean finished)
-
-