Package org.gbif.api.model.pipelines.ws
Class SearchResult
- java.lang.Object
-
- org.gbif.api.model.pipelines.ws.SearchResult
-
- All Implemented Interfaces:
Serializable
public class SearchResult extends Object implements Serializable
Models a flat response of a pipeline process search.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
getAttempt()
UUID
getDatasetKey()
int
getExecutionKey()
String
getPipelinesVersion()
String
getRerunReason()
LocalDateTime
getStepFinished()
LocalDateTime
getStepStarted()
String
getStepState()
String
getStepType()
int
hashCode()
void
setAttempt(int attempt)
void
setDatasetKey(UUID datasetKey)
void
setExecutionKey(int executionKey)
void
setPipelinesVersion(String pipelinesVersion)
void
setRerunReason(String rerunReason)
void
setStepFinished(LocalDateTime stepFinished)
void
setStepStarted(LocalDateTime stepStarted)
void
setStepState(String stepState)
void
setStepType(String stepType)
-
-
-
Constructor Detail
-
SearchResult
public SearchResult()
-
-
Method Detail
-
getDatasetKey
public UUID getDatasetKey()
-
setDatasetKey
public void setDatasetKey(UUID datasetKey)
-
getAttempt
public int getAttempt()
-
setAttempt
public void setAttempt(int attempt)
-
getExecutionKey
public int getExecutionKey()
-
setExecutionKey
public void setExecutionKey(int executionKey)
-
getRerunReason
public String getRerunReason()
-
setRerunReason
public void setRerunReason(String rerunReason)
-
getStepType
public String getStepType()
-
setStepType
public void setStepType(String stepType)
-
getStepState
public String getStepState()
-
setStepState
public void setStepState(String stepState)
-
getPipelinesVersion
public String getPipelinesVersion()
-
setPipelinesVersion
public void setPipelinesVersion(String pipelinesVersion)
-
getStepStarted
public LocalDateTime getStepStarted()
-
setStepStarted
public void setStepStarted(LocalDateTime stepStarted)
-
getStepFinished
public LocalDateTime getStepFinished()
-
setStepFinished
public void setStepFinished(LocalDateTime stepFinished)
-
-