Package org.gbif.api.service.pipelines
Interface IngestionHistoryService
-
public interface IngestionHistoryService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IngestionProcess
getIngestion(@NotNull UUID datasetKey, int attempt)
PagingResponse<IngestionProcess>
history(@NotNull UUID datasetKey, List<FinishReason> finishReasons, Pageable pageable)
PagingResponse<IngestionProcess>
history(List<FinishReason> finishReasons, Pageable pageable)
-
-
-
Method Detail
-
history
PagingResponse<IngestionProcess> history(@Nullable List<FinishReason> finishReasons, Pageable pageable)
-
history
PagingResponse<IngestionProcess> history(@NotNull @NotNull UUID datasetKey, @Nullable List<FinishReason> finishReasons, Pageable pageable)
-
getIngestion
IngestionProcess getIngestion(@NotNull @NotNull UUID datasetKey, int attempt)
-
-