| Package | Description |
|---|---|
| org.squashtest.tm.service.internal.repository |
| Modifier and Type | Method and Description |
|---|---|
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.batchedFindAllCustomValuesFor(Collection<Long> entityIds,
org.squashtest.tm.domain.customfield.BindableEntity entityType)
Same as above, list version.
|
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.batchedInitializedFindAllCustomValuesFor(List<Long> entityIds,
org.squashtest.tm.domain.customfield.BindableEntity entityType)
Same as above, and initialiazes the bindings and custom fields.
|
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.batchedRestrictedFindAllCustomValuesFor(List<Long> entityIds,
org.squashtest.tm.domain.customfield.BindableEntity entityType,
Collection<org.squashtest.tm.domain.customfield.CustomField> customFields)
Same as above, will restrict to the custom fields specified as arguments
|
Long |
CustomFieldBindingDao.countAllForProjectAndEntity(long projectId,
org.squashtest.tm.domain.customfield.BindableEntity boundEntity) |
long |
TeamDao.countAssociatedTeams(long userId)
Will count the number of Teams where the concerned user is member.
|
long |
RequirementAuditEventDao.countByRequirementVersionId(long requirementVersionId) |
long |
TestCaseDao.countCallingTestSteps(long testCaseId)
Counts the calling test steps of a test case
|
long |
DenormalizedFieldValueDao.countDenormalizedFields(long entityId,
org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldHolderType entityType) |
void |
CustomFieldValueDao.deleteAll(List<Long> ids)
Delete all the CustomFieldValue, given their ids.
|
void |
RequirementSyncExtenderDao.deleteAllByServer(Long serverId) |
void |
CustomFieldValueDao.deleteAllForBinding(Long bindingId)
Delete all the CustomFieldValue related to a
CustomFieldBinding, given its id. |
void |
CustomFieldValueDao.deleteAllForEntities(org.squashtest.tm.domain.customfield.BindableEntity entityType,
List<Long> entityIds)
Delete all the custom field values related to a bunch of bound entities
|
void |
CustomFieldValueDao.deleteAllForEntity(Long entityId,
org.squashtest.tm.domain.customfield.BindableEntity entity)
Delete all the custom field values related to a BoundEntity, identified by its id and BindableEntity
|
void |
DenormalizedFieldValueDao.deleteAllForEntity(long denormalizedFieldHolderId,
org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldHolderType denormalizedFieldHolderType)
Deprecated.
does not seem to be used as per 1.14
|
List<org.squashtest.tm.domain.customfield.CustomFieldBinding> |
CustomFieldBindingDao.findAllAlike(long id)
Given an id, returns the list of all the entities binding the same project to the same entity.
|
Set<org.squashtest.tm.domain.attachment.Attachment> |
AttachmentDao.findAllAttachments(Long attachmentListId)
Returns all the attachments that belong to the given AttachmentList
|
List<String> |
CustomFieldValueDao.findAllAvailableTagForEntityInProjects(org.squashtest.tm.domain.customfield.BindableEntity boundEntityType,
List<Long> projectIds) |
List<org.squashtest.tm.domain.customfield.CustomField> |
CustomFieldDao.findAllBindableCustomFields(Long projectId,
org.squashtest.tm.domain.customfield.BindableEntity bindableEntity)
Will return the list of custom fields that can be bound to the given project and the given bindable entity (ie,
those who aren't bound yet).
|
List<org.squashtest.tm.domain.customfield.CustomField> |
CustomFieldDao.findAllBoundCustomFields(Long projectId,
org.squashtest.tm.domain.customfield.BindableEntity bindableEntity)
returns the complementary of
CustomFieldDao.findAllBindableCustomFields(Long, BindableEntity) |
List<org.squashtest.tm.domain.customfield.CustomFieldBinding> |
CustomFieldBindingDao.findAllByIds(Collection<Long> ids)
returns the bindings grouped by project and entity, sorted by position
|
List<org.squashtest.tm.domain.testautomation.AutomatedExecutionExtender> |
AutomatedExecutionExtenderDao.findAllBySuiteIdAndProjectId(String suiteId,
Long projectId)
Deprecated.
not used - remove in 1.15 if it's still not used
|
List<org.squashtest.tm.domain.testautomation.AutomatedExecutionExtender> |
AutomatedExecutionExtenderDao.findAllBySuiteIdAndTestName(String suiteId,
String testName,
String projectName)
Returns the
AutomatedExecutionExtenders which match the AutomatedExecutionSetIdentifier. |
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.findAllCustomFieldValueOfBindingAndEntity(long customFieldBindingId,
long boundEntityId,
org.squashtest.tm.domain.customfield.BindableEntity bindableEntity)
return the custom field value matchine the given params.
|
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.findAllCustomValues(long entityId,
org.squashtest.tm.domain.customfield.BindableEntity entityType)
returns the list of
CustomFieldValue for the given entity, sorted according to the
order specified in their respective CustomFieldBinding. |
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.findAllCustomValuesOfBinding(long customFieldBindingId)
returns all the
CustomFieldValue related to a given CustomFieldBinding, sorted according to
their custom field binding order. |
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.findAllCustomValuesOfBindings(List<Long> customFieldBindingIds)
returns all the CustomFieldValue related to a list of CustomFieldBinding, the resulting elements will be
returned in unspecified order
|
List<Long> |
TestCaseDao.findAllDistinctTestCasesIdsCalledByTestCase(long testCaseId) |
List<Long> |
TestCaseDao.findAllDistinctTestCasesIdsCallingTestCase(long testCaseId) |
List<org.squashtest.tm.domain.customfield.CustomFieldValue> |
CustomFieldValueDao.findAllForEntityAndRenderingLocation(long entityId,
org.squashtest.tm.domain.customfield.BindableEntity entityType,
org.squashtest.tm.domain.customfield.RenderingLocation renderingLocation) |
List<org.squashtest.tm.domain.customfield.CustomFieldBinding> |
CustomFieldBindingDao.findAllForGenericProject(long projectId) |
List<org.squashtest.tm.domain.customfield.CustomFieldBinding> |
CustomFieldBindingDao.findAllForProjectAndEntity(long projectId,
org.squashtest.tm.domain.customfield.BindableEntity boundEntity) |
List<org.squashtest.tm.domain.users.Team> |
TeamDao.findAllNonAssociatedTeams(long userId)
Will return all
Teams that don't have the concerned user as a member. |
List<Pair<org.squashtest.tm.domain.execution.Execution,org.squashtest.csp.core.bugtracker.domain.BugTracker>> |
BugTrackerDao.findAllPairsByExecutions(Collection<org.squashtest.tm.domain.execution.Execution> executions) |
List<Long> |
TestCaseDao.findAllTestCaseIdsByLibraries(Collection<Long> libraryIds) |
List<Long> |
TestCaseDao.findAllTestCasesLibraryForMilestone(Collection<Long> milestoneIds) |
List<Long> |
TestCaseDao.findAllTestCasesLibraryNodeForMilestone(Collection<Long> milestoneIds) |
org.squashtest.tm.domain.attachment.Attachment |
AttachmentDao.findAttachmentWithContent(Long attachmentId)
Deprecated.
not used - remove in 1.15 if it's still not used
|
Long |
CustomFieldValueDao.findBoundEntityId(Long customFieldValueId) |
List<String> |
GenericProjectDao.findBoundTestAutomationProjectJobNames(long id) |
List<String> |
GenericProjectDao.findBoundTestAutomationProjectLabels(long projectId) |
List<org.squashtest.tm.domain.testautomation.TestAutomationProject> |
GenericProjectDao.findBoundTestAutomationProjects(long id) |
org.squashtest.csp.core.bugtracker.domain.BugTracker |
BugTrackerDao.findByCampaignLibraryNode(org.squashtest.tm.domain.campaign.CampaignLibraryNode node) |
org.squashtest.csp.core.bugtracker.domain.BugTracker |
BugTrackerDao.findByExecution(org.squashtest.tm.domain.execution.Execution execution) |
org.squashtest.csp.core.bugtracker.domain.BugTracker |
BugTrackerDao.findByExecutionStep(org.squashtest.tm.domain.execution.ExecutionStep executionStep) |
org.squashtest.csp.core.bugtracker.domain.BugTracker |
BugTrackerDao.findByIteration(org.squashtest.tm.domain.campaign.Iteration iteration) |
org.squashtest.tm.domain.testcase.Dataset |
DatasetDao.findByTestCaseIdAndName(Long testCaseId,
String name)
Will return the dataset matching the given name and belonging to the test case matchine the given id.
|
org.squashtest.csp.core.bugtracker.domain.BugTracker |
BugTrackerDao.findByTestSuite(org.squashtest.tm.domain.campaign.TestSuite testSuite) |
org.squashtest.tm.domain.testautomation.TestAutomationServer |
TestAutomationServerDao.findByUrlAndLogin(URL url,
String login)
Find the TestAutomationServer using its URL and the login used to log on it.
|
List<org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldValue> |
DenormalizedFieldValueDao.findDFVForEntities(org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldHolderType type,
Collection<Long> entities) |
List<org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldValue> |
DenormalizedFieldValueDao.findDFVForEntitiesAndLocations(org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldHolderType denormalizedFieldHolderType,
Collection<Long> entities,
Collection<org.squashtest.tm.domain.customfield.RenderingLocation> locations) |
List<org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldValue> |
DenormalizedFieldValueDao.findDFVForEntity(long denormalizedFieldHolderId,
org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldHolderType denormalizedFieldHolderType)
Return all denormalized field values related to the denormalizedFieldHolder matching params.
|
List<org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldValue> |
DenormalizedFieldValueDao.findDFVForEntityAndRenderingLocation(long denormalizedFieldHolderId,
org.squashtest.tm.domain.denormalizedfield.DenormalizedFieldHolderType denormalizedFieldHolderType,
org.squashtest.tm.domain.customfield.RenderingLocation renderingLocation)
Return all denormalized field values related to the denormalizedFieldHolder matching params.
|
List<org.squashtest.csp.core.bugtracker.domain.BugTracker> |
BugTrackerDao.findDistinctBugTrackersForProjects(List<Long> projectIds) |
List<Object[]> |
CustomFieldBindingDao.findEffectiveBindingsForEntities(List<Long> entityIds,
org.squashtest.tm.domain.customfield.BindableEntity entityType)
batched version of
CustomFieldBindingDao.findEffectiveBindingsForEntity(long, BindableEntity). |
List<org.squashtest.tm.domain.customfield.CustomFieldBinding> |
CustomFieldBindingDao.findEffectiveBindingsForEntity(long entityId,
org.squashtest.tm.domain.customfield.BindableEntity entityType)
Given a bound entity, find which custom field bindings are effectively honored.
|
List<Long> |
TestCaseDao.findNodeIdsHavingMultipleMilestones(Collection<Long> nodeIds) |
List<Long> |
TestCaseDao.findNonBoundTestCases(Collection<Long> nodeIds,
Long milestoneId) |
List<org.squashtest.tm.domain.testcase.Dataset> |
CustomDatasetDao.findOwnDatasetsByTestCase(Long testCaseId)
Will return all datasets for the given test case.
|
org.squashtest.tm.domain.testcase.Parameter |
ParameterDao.findOwnParameterByNameAndTestCase(String name,
Long testcaseId)
For a given test case, finds the parameter bearing the given name.
|
List<org.squashtest.tm.domain.testcase.Parameter> |
ParameterDao.findOwnParametersByTestCase(Long testcaseId)
Given a test case ID, returns the list of parameters that directly belong to that test case
(inherited parameters are ignored).
|
List<CustomFieldValueDao.CustomFieldValuesPair> |
CustomFieldValueDao.findPairedCustomFieldValues(org.squashtest.tm.domain.customfield.BindableEntity entity,
Long origEntityId,
Long copyEntityId)
Will return instances of
CustomFieldValueDao.CustomFieldValuesPair, that will pair two CustomFieldValue that represents the same
CustomFieldBinding. |
List<Long> |
TestSuiteDao.findPlannedTestCasesIds(Long suiteId)
Will find the distinct ids of the test cases referenced in the suite matching the given id
|
long |
TestSuiteDao.findProjectIdBySuiteId(long suiteId) |
org.squashtest.tm.domain.testautomation.TestAutomationServer |
GenericProjectDao.findTestAutomationServer(long projectId) |
List<org.squashtest.tm.domain.campaign.IterationTestPlanItem> |
TestSuiteDao.findTestPlanPartition(long testSuiteId,
List<Long> testPlanItemIds) |
void |
ParameterDao.removeAllByTestCaseIds(List<Long> removeAllByTestCaseIds) |
void |
DatasetDao.removeAllByTestCaseIds(List<Long> testCaseIds) |
void |
ParameterDao.removeAllValuesByTestCaseIds(List<Long> testCaseIds) |
void |
DatasetDao.removeAllValuesByTestCaseIds(List<Long> testCaseIds) |
Collection<org.squashtest.tm.domain.requirement.RequirementSyncExtender> |
RequirementSyncExtenderDao.retrieveAllByRemoteKey(Collection<String> remoteId,
Long projectId) |
Collection<org.squashtest.tm.domain.requirement.RequirementSyncExtender> |
RequirementSyncExtenderDao.retrieveAllByRemoteProjectsAndFilter(String remoteProjectId,
String filterName,
Long projectId) |
Collection<org.squashtest.tm.domain.requirement.RequirementSyncExtender> |
RequirementSyncExtenderDao.retrieveAllByServer(Long serverId) |
org.squashtest.tm.domain.requirement.RequirementSyncExtender |
RequirementSyncExtenderDao.retrieveByRemoteKey(String remoteId,
Long projectId) |
Copyright © 2010–2016 Henix, henix.fr. All rights reserved.