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 booleanequals(Object o)intgetAttempt()UUIDgetDatasetKey()intgetExecutionKey()StringgetPipelinesVersion()StringgetRerunReason()LocalDateTimegetStepFinished()LocalDateTimegetStepStarted()StringgetStepState()StringgetStepType()inthashCode()voidsetAttempt(int attempt)voidsetDatasetKey(UUID datasetKey)voidsetExecutionKey(int executionKey)voidsetPipelinesVersion(String pipelinesVersion)voidsetRerunReason(String rerunReason)voidsetStepFinished(LocalDateTime stepFinished)voidsetStepStarted(LocalDateTime stepStarted)voidsetStepState(String stepState)voidsetStepType(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)
-
-