public interface StatusService
StatusModel within TM4J.| Modifier and Type | Method and Description |
|---|---|
ServiceResult<TestCaseStatusModel> |
getTestCaseStatusModelById(String userKey,
Long statusId)
Retrieves the TestCaseStatus as a
TestCaseStatusModel with the given statusId. |
ServiceResult<TestCycleStatusModel> |
getTestCycleStatusModelById(String userKey,
Long statusId)
Retrieves the TestCycleStatus as a
TestCycleStatusModel with the given statusId. |
ServiceResult<TestExecutionStatusModel> |
getTestExecutionStatusModelById(String userKey,
Long statusId)
Retrieves the TestExecutionStatus as a
TestExecutionStatusModel with the given statusId. |
ServiceResult<TestCaseStatusModel> getTestCaseStatusModelById(String userKey, Long statusId)
TestCaseStatusModel with the given statusId.userKey - an identifier that uniquely identifies a user which is performing the action.statusId - the ID of the Test Case.ServiceResult containing a TestCaseStatusModel
with the relevant fields of the TestCaseStatus.
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.ServiceResult<TestCycleStatusModel> getTestCycleStatusModelById(String userKey, Long statusId)
TestCycleStatusModel with the given statusId.userKey - an identifier that uniquely identifies a user which is performing the action.statusId - the ID of the Test Cycle.ServiceResult containing a TestCycleStatusModel
with the relevant fields of the TestCycleStatus.
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.ServiceResult<TestExecutionStatusModel> getTestExecutionStatusModelById(String userKey, Long statusId)
TestExecutionStatusModel with the given statusId.userKey - an identifier that uniquely identifies a user which is performing the action.statusId - the ID of the Test Execution.ServiceResult containing a TestExecutionStatusModel
with the relevant fields of the TestExecutionStatus
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.Copyright © 2020. All rights reserved.