Package org.gbif.api.service.collections
Interface CollectionService
- All Superinterfaces:
CollectionEntityService<Collection>
,CommentService
,ContactService
,CrudService<Collection>
,IdentifierService
,MachineTagService
,OccurrenceMappingService
,PrimaryIdentifierService
,TagService
API Service to work with collections.
-
Method Summary
Modifier and TypeMethodDescriptioncreateFromDataset
(UUID datasetKey, String collectionCode) Creates aCollection
from aDataset
.createFromLatimerCore
(@NotNull @Valid ObjectGroup objectGroup) Similar toCrudService.create(CollectionEntity)
but it accepts Latimer Core.getAsLatimerCore
(@NotNull UUID key) Similar toCrudService.get(UUID)
but it returns the result in Latimer Core format.getCollectionView
(@NotNull UUID key) Retrieves aCollectionView
by the collection key.list
(CollectionSearchRequest searchRequest) PagesCollection
entities based on the parameters received.listAsLatimerCore
(CollectionSearchRequest searchRequest) Similar to thelist(CollectionSearchRequest)
method but returns the results in Latimer Core format.listDeleted
(CollectionSearchRequest searchRequest) Provides access to deleted collections.Provides a simple suggest service.void
updateFromLatimerCore
(@NotNull @Valid ObjectGroup entity) Similar toCrudService.update(CollectionEntity)
)} but it accepts Latimer Core.Methods inherited from interface org.gbif.api.service.collections.CollectionEntityService
addMasterSourceMetadata, deleteMasterSourceMetadata, findByMasterSource, getMasterSourceMetadata, replace, update
Methods inherited from interface org.gbif.api.service.registry.CommentService
addComment, deleteComment, listComments
Methods inherited from interface org.gbif.api.service.collections.ContactService
addContactPerson, addSuggestionContacts, listContactPersons, removeContactPerson, replaceContactPersons, updateContactPerson
Methods inherited from interface org.gbif.api.service.collections.CrudService
create, delete, exists, get, update
Methods inherited from interface org.gbif.api.service.registry.IdentifierService
addIdentifier, deleteIdentifier, listIdentifiers
Methods inherited from interface org.gbif.api.service.registry.MachineTagService
addMachineTag, addMachineTag, addMachineTag, deleteMachineTag, deleteMachineTags, deleteMachineTags, deleteMachineTags, deleteMachineTags, listMachineTags
Methods inherited from interface org.gbif.api.service.collections.OccurrenceMappingService
addOccurrenceMapping, deleteOccurrenceMapping, listOccurrenceMappings
Methods inherited from interface org.gbif.api.service.registry.PrimaryIdentifierService
updateIdentifier
Methods inherited from interface org.gbif.api.service.registry.TagService
addTag, addTag, deleteTag, listTags
-
Method Details
-
list
PagesCollection
entities based on the parameters received.To iterate over all entities you can use code like this:
PagingRequest req = new PagingRequest(); PagingResponse<T> response; do { response = service.list(req); for (T obj : response.getResults()) { doStuff(); } req.nextPage(); } while (!response.isEndOfRecords());
- Parameters:
searchRequest
-CollectionSearchRequest
with all the parameters- Returns:
- a list of entities ordered by their creation date, newest coming first
-
listAsLatimerCore
Similar to thelist(CollectionSearchRequest)
method but returns the results in Latimer Core format. -
listDeleted
Provides access to deleted collections. -
getAsLatimerCore
Similar toCrudService.get(UUID)
but it returns the result in Latimer Core format. -
createFromLatimerCore
Similar toCrudService.create(CollectionEntity)
but it accepts Latimer Core. -
updateFromLatimerCore
Similar toCrudService.update(CollectionEntity)
)} but it accepts Latimer Core. -
getCollectionView
Retrieves aCollectionView
by the collection key. -
suggest
Provides a simple suggest service. -
createFromDataset
Creates aCollection
from aDataset
.- Parameters:
datasetKey
- key of the dataset to create the collection fromcollectionCode
- the code to assign to the collection since it can't be inferred from the dataset- Returns:
- UUID of the created collection
-