public interface ParameterDao extends org.springframework.data.jpa.repository.JpaRepository<org.squashtest.tm.domain.testcase.Parameter,Long>, CustomParameterDao
| Modifier and Type | Method and Description |
|---|---|
org.squashtest.tm.domain.testcase.Parameter |
findById(Long id) |
org.squashtest.tm.domain.testcase.Parameter |
findOwnParameterByNameAndTestCase(String name,
Long testcaseId)
For a given test case, finds the parameter bearing the given name.
|
List<org.squashtest.tm.domain.testcase.Parameter> |
findOwnParametersByTestCase(Long testcaseId)
Given a test case ID, returns the list of parameters that directly belong to that test case
(inherited parameters are ignored).
|
void |
removeAllByTestCaseIds(List<Long> removeAllByTestCaseIds) |
void |
removeAllValuesByTestCaseIds(List<Long> testCaseIds) |
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAll, flush, getOne, save, saveAndFlushfindAllcount, delete, delete, delete, deleteAll, exists, findOne, savecount, exists, findAll, findOnefindAllParametersByTestCaseorg.squashtest.tm.domain.testcase.Parameter findById(Long id)
@Query
@Modifying
void removeAllByTestCaseIds(@Param(value="testCaseIds")
List<Long> removeAllByTestCaseIds)
@Query
@Modifying
void removeAllValuesByTestCaseIds(@Param(value="testCaseIds")
List<Long> testCaseIds)
@Query List<org.squashtest.tm.domain.testcase.Parameter> findOwnParametersByTestCase(@Param(value="testCaseId") Long testcaseId)
@Query
org.squashtest.tm.domain.testcase.Parameter findOwnParameterByNameAndTestCase(@Param(value="name")
String name,
@Param(value="testCaseId")
Long testcaseId)
Copyright © 2010–2017 Henix, henix.fr. All rights reserved.