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 PipelineExecution
addStep(PipelineStep step)
boolean
equals(Object o)
LocalDateTime
getCreated()
String
getCreatedBy()
long
getKey()
String
getRemarks()
String
getRerunReason()
Set<PipelineStep>
getSteps()
Set<StepType>
getStepsToRun()
int
hashCode()
boolean
isFinished()
PipelineExecution
setCreated(LocalDateTime created)
PipelineExecution
setCreatedBy(String createdBy)
PipelineExecution
setFinished(boolean finished)
PipelineExecution
setKey(long key)
PipelineExecution
setRemarks(String remarks)
PipelineExecution
setRerunReason(String rerunReason)
PipelineExecution
setSteps(Set<PipelineStep> steps)
PipelineExecution
setStepsToRun(Set<StepType> stepsToRun)
String
toString()
-
-
-
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)
-
-