Interface ZephyrRestClient
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
ZephyrRestClientImpl
public interface ZephyrRestClient extends Closeable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateAttachment(Integer issueId, Integer projectId, Integer versionId, String entityName, String entityId, String cycleId, String comment, InputStream stream, String filename)CyclegetCycle(String cycleId, Integer projectId, Integer versionId)ExecutionWrappergetExecution(String executionID, int issueId, int projectId)List<ExecutionWrapper>getExecutionsByCycleId(String cycleId, int issueId, int projectId)List<ExecutionWrapper>getExecutionsByZQL(String zqlQuery)CycleListgetListOfCycles(Integer projectId, Integer versionId)StepResultsgetStepResultsByExecution(String executionID, int issueId)TestStepListgetTestSteps(Integer issueId, Integer projectId)ObjectupdateExecution(String executionID, Execution newExecution)ObjectupdateStepResult(StepResult stepResult)
-
-
-
Method Detail
-
getExecutionsByZQL
List<ExecutionWrapper> getExecutionsByZQL(String zqlQuery)
-
getExecutionsByCycleId
List<ExecutionWrapper> getExecutionsByCycleId(String cycleId, int issueId, int projectId)
-
getExecution
ExecutionWrapper getExecution(String executionID, int issueId, int projectId)
-
getStepResultsByExecution
StepResults getStepResultsByExecution(String executionID, int issueId)
-
updateStepResult
Object updateStepResult(StepResult stepResult)
-
getTestSteps
TestStepList getTestSteps(Integer issueId, Integer projectId)
-
createAttachment
void createAttachment(Integer issueId, Integer projectId, Integer versionId, String entityName, String entityId, String cycleId, String comment, InputStream stream, String filename)
-
-