Interface VocabularyEntryRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, org.springframework.data.repository.ListCrudRepository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, org.springframework.data.repository.ListPagingAndSortingRepository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, org.springframework.data.mongodb.repository.MongoRepository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, org.springframework.data.repository.PagingAndSortingRepository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, org.springframework.data.repository.query.QueryByExampleExecutor<de.uniba.minf.registry.model.vocabulary.VocabularyEntry>, org.springframework.data.repository.Repository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, VocabularyEntryRepositoryCustom

public interface VocabularyEntryRepository extends org.springframework.data.mongodb.repository.MongoRepository<de.uniba.minf.registry.model.vocabulary.VocabularyEntry,String>, VocabularyEntryRepositoryCustom
  • Method Summary

    Modifier and Type
    Method
    Description
    Optional<de.uniba.minf.registry.model.vocabulary.VocabularyEntry>
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository

    findAll, findAll, insert, insert

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findByDefinitionAndKey

      @Query("{ \'definitionName\': ?0, \'key\': ?1 }") Optional<de.uniba.minf.registry.model.vocabulary.VocabularyEntry> findByDefinitionAndKey(String definition, String key)