Interface IdentifierTypeRepository


  • public interface IdentifierTypeRepository
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      long count()  
      void delete​(List<UUID> uuids)  
      default void delete​(UUID uuid)  
      de.digitalcollections.model.api.paging.PageResponse<de.digitalcollections.model.api.identifiable.IdentifierType> find​(de.digitalcollections.model.api.paging.PageRequest pageRequest)  
      de.digitalcollections.model.api.identifiable.IdentifierType findOne​(UUID uuid)  
      de.digitalcollections.model.api.identifiable.IdentifierType findOneByNamespace​(String namespace)  
      de.digitalcollections.model.api.identifiable.IdentifierType save​(de.digitalcollections.model.api.identifiable.IdentifierType identifier)  
      de.digitalcollections.model.api.identifiable.IdentifierType update​(de.digitalcollections.model.api.identifiable.IdentifierType identifier)  
    • Method Detail

      • count

        long count()
      • delete

        default void delete​(UUID uuid)
      • delete

        void delete​(List<UUID> uuids)
      • find

        de.digitalcollections.model.api.paging.PageResponse<de.digitalcollections.model.api.identifiable.IdentifierType> find​(de.digitalcollections.model.api.paging.PageRequest pageRequest)
      • findOne

        de.digitalcollections.model.api.identifiable.IdentifierType findOne​(UUID uuid)
      • findOneByNamespace

        de.digitalcollections.model.api.identifiable.IdentifierType findOneByNamespace​(String namespace)
      • save

        de.digitalcollections.model.api.identifiable.IdentifierType save​(de.digitalcollections.model.api.identifiable.IdentifierType identifier)
      • update

        de.digitalcollections.model.api.identifiable.IdentifierType update​(de.digitalcollections.model.api.identifiable.IdentifierType identifier)