Interface SubpropertyRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Subproperty,
,Long> org.springframework.data.jpa.repository.JpaRepository<Subproperty,
,Long> org.springframework.data.repository.ListCrudRepository<Subproperty,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<Subproperty,
,Long> org.springframework.data.repository.PagingAndSortingRepository<Subproperty,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<Subproperty>
,org.springframework.data.repository.Repository<Subproperty,
Long>
public interface SubpropertyRepository
extends org.springframework.data.jpa.repository.JpaRepository<Subproperty,Long>
Repository interface for finding and managing subproperties in the database.
-
Method Summary
Modifier and TypeMethodDescriptionfindByVersionId
(Long versionId) findByVersionIdAndProperty_Namespace_PrefixAndProperty_NameOrderByType_NameAsc
(Long versionId, String prefix, String name) findByVersionIdAndProperty_Namespace_PrefixOrderByType_NameAscSequence
(Long versionId, String prefix) findByVersionIdAndType_Namespace_PrefixAndType_NameOrderBySequenceAsc
(Long versionId, String prefix, String name) findByVersionIdAndType_Namespace_PrefixOrderByType_NameAscSequenceAsc
(Long versionId, String prefix) findOneByVersionIdAndType_Namespace_PrefixAndType_NameAndProperty_Namespace_PrefixAndProperty_Name
(Long versionId, String typePrefix, String typeName, String propertyPrefix, String propertyName) 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.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
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.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findOneByVersionIdAndType_Namespace_PrefixAndType_NameAndProperty_Namespace_PrefixAndProperty_Name
-
findByVersionIdAndType_Namespace_PrefixAndType_NameOrderBySequenceAsc
Set<Subproperty> findByVersionIdAndType_Namespace_PrefixAndType_NameOrderBySequenceAsc(Long versionId, String prefix, String name) -
findByVersionIdAndProperty_Namespace_PrefixAndProperty_NameOrderByType_NameAsc
Set<Subproperty> findByVersionIdAndProperty_Namespace_PrefixAndProperty_NameOrderByType_NameAsc(Long versionId, String prefix, String name) -
findByVersionIdAndType_Namespace_PrefixOrderByType_NameAscSequenceAsc
Set<Subproperty> findByVersionIdAndType_Namespace_PrefixOrderByType_NameAscSequenceAsc(Long versionId, String prefix) -
findByVersionIdAndProperty_Namespace_PrefixOrderByType_NameAscSequence
Set<Subproperty> findByVersionIdAndProperty_Namespace_PrefixOrderByType_NameAscSequence(Long versionId, String prefix) -
findByVersionId
-