Interface IdentifierTypeRepository
-
public interface IdentifierTypeRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description longcount()voiddelete(List<UUID> uuids)default voiddelete(UUID uuid)de.digitalcollections.model.paging.PageResponse<de.digitalcollections.model.identifiable.IdentifierType>find(de.digitalcollections.model.paging.PageRequest pageRequest)de.digitalcollections.model.identifiable.IdentifierTypefindOne(UUID uuid)de.digitalcollections.model.identifiable.IdentifierTypefindOneByNamespace(String namespace)de.digitalcollections.model.identifiable.IdentifierTypesave(de.digitalcollections.model.identifiable.IdentifierType identifier)de.digitalcollections.model.identifiable.IdentifierTypeupdate(de.digitalcollections.model.identifiable.IdentifierType identifier)
-
-
-
Method Detail
-
count
long count()
-
delete
default void delete(UUID uuid)
-
find
de.digitalcollections.model.paging.PageResponse<de.digitalcollections.model.identifiable.IdentifierType> find(de.digitalcollections.model.paging.PageRequest pageRequest)
-
findOne
de.digitalcollections.model.identifiable.IdentifierType findOne(UUID uuid)
-
findOneByNamespace
de.digitalcollections.model.identifiable.IdentifierType findOneByNamespace(String namespace)
-
save
de.digitalcollections.model.identifiable.IdentifierType save(de.digitalcollections.model.identifiable.IdentifierType identifier)
-
update
de.digitalcollections.model.identifiable.IdentifierType update(de.digitalcollections.model.identifiable.IdentifierType identifier)
-
-