Package org.gbif.api.service.registry
Interface MetasyncHistoryService
-
public interface MetasyncHistoryService
Interface to access and persists historical metadata synchronization results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createMetasync(@NotNull @Valid MetasyncHistory metasyncHistory)
Persists theMetasyncHistory
object.PagingResponse<MetasyncHistory>
listMetasync(@NotNull UUID installationKey, Pageable page)
Lists theMetasyncHistory
of a installation.PagingResponse<MetasyncHistory>
listMetasync(Pageable page)
Retrieves a pageable result of all the metasync history records.
-
-
-
Method Detail
-
createMetasync
void createMetasync(@NotNull @Valid @NotNull @Valid MetasyncHistory metasyncHistory)
Persists theMetasyncHistory
object.
-
listMetasync
PagingResponse<MetasyncHistory> listMetasync(@Nullable Pageable page)
Retrieves a pageable result of all the metasync history records.
-
listMetasync
PagingResponse<MetasyncHistory> listMetasync(@NotNull @NotNull UUID installationKey, @Nullable Pageable page)
Lists theMetasyncHistory
of a installation. The result is sorted by the sync date.
-
-