Interface PropertyRepository

All Superinterfaces:
ComponentRepository<Property>, org.springframework.data.repository.CrudRepository<Property,Long>, org.springframework.data.jpa.repository.JpaRepository<Property,Long>, org.springframework.data.repository.ListCrudRepository<Property,Long>, org.springframework.data.repository.ListPagingAndSortingRepository<Property,Long>, org.springframework.data.repository.PagingAndSortingRepository<Property,Long>, org.springframework.data.repository.query.QueryByExampleExecutor<Property>, org.springframework.data.repository.Repository<Property,Long>

public interface PropertyRepository extends ComponentRepository<Property>
Repository interface for finding and managing properties in the database.
  • Method Details

    • countByNamespace_IdAndCategory

      long countByNamespace_IdAndCategory(long namespaceId, Property.Category category)
    • countByNamespace_Version_IdAndCategory

      long countByNamespace_Version_IdAndCategory(long versionId, Property.Category category)
    • findAllByGroup_Id

      List<Property> findAllByGroup_Id(long groupId)
    • findAllByType_Id

      org.springframework.data.domain.Page<Property> findAllByType_Id(long typeId, org.springframework.data.domain.Pageable pageable)