public interface PathService
| Modifier and Type | Method and Description |
|---|---|
String |
buildCampaignPath(long id)
same thing than
buildTestCasePath(long), but for campaign library nodes |
List<String> |
buildCampaignPaths(List<Long> ids)
same thing than
buildTestCasesPaths(List), but for requirement library nodes |
String |
buildRequirementPath(long id)
same thing than
buildTestCasePath(long), but for requirement library nodes |
List<String> |
buildRequirementsPaths(List<Long> ids)
same thing than
buildTestCasesPaths(List), but for requirement library nodes |
String |
buildTestCasePath(long id)
Given an id of library NODE, return the path of this node.
|
List<String> |
buildTestCasesPaths(List<Long> ids)
Given a list of ids of library NODE, return the path of those nodes.
|
String buildTestCasePath(long id)
Given an id of library NODE, return the path of this node. The path starts with /<projectname>. The path is slash-separated '/'. If one of the elements in the path uses a '/', it will be escaped as '\/'.
ids - List<String> buildTestCasesPaths(List<Long> ids)
Given a list of ids of library NODE, return the path of those nodes. The path starts with /<projectname>. The path is slash-separated '/'. If one of the elements in the path uses a '/', it will be escaped as '\/'.
The order of the result is consistent with the order of the input. If an element could not be found (an invalid id for instance), the corresponding path in the result is NULL.
ids - String buildRequirementPath(long id)
buildTestCasePath(long), but for requirement library nodesid - List<String> buildRequirementsPaths(List<Long> ids)
buildTestCasesPaths(List), but for requirement library nodesid - String buildCampaignPath(long id)
buildTestCasePath(long), but for campaign library nodesid - List<String> buildCampaignPaths(List<Long> ids)
buildTestCasesPaths(List), but for requirement library nodesid - Copyright © 2010–2017 Henix, henix.fr. All rights reserved.