Package org.gbif.api.service.registry
Interface MetasyncHistoryService
public interface MetasyncHistoryService
Interface to access and persists historical metadata synchronization results.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
createMetasync
(@NotNull @Valid MetasyncHistory metasyncHistory) Persists theMetasyncHistory
object.listMetasync
(@NotNull UUID installationKey, Pageable page) Lists theMetasyncHistory
of a installation.listMetasync
(Pageable page) Retrieves a pageable result of all the metasync history records.
-
Method Details
-
createMetasync
Persists theMetasyncHistory
object. -
listMetasync
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.
-