Interface VariableValueRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<VariableValue,,Long> org.springframework.data.jpa.repository.JpaRepository<VariableValue,,Long> org.springframework.data.repository.ListCrudRepository<VariableValue,,Long> org.springframework.data.repository.ListPagingAndSortingRepository<VariableValue,,Long> org.springframework.data.repository.PagingAndSortingRepository<VariableValue,,Long> org.springframework.data.repository.query.QueryByExampleExecutor<VariableValue>,org.springframework.data.repository.Repository<VariableValue,Long>
@Repository
public interface VariableValueRepository
extends org.springframework.data.jpa.repository.JpaRepository<VariableValue,Long>
-
Method Summary
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findSegmentVariables
@Query("select vv from VariableValue vv where vv.attachedSegment.id=?1") List<VariableValue> findSegmentVariables(long id)
-