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 void
createAttachment(Integer issueId, Integer projectId, Integer versionId, String entityName, String entityId, String cycleId, String comment, InputStream stream, String filename)
Cycle
getCycle(String cycleId, Integer projectId, Integer versionId)
ExecutionWrapper
getExecution(String executionID, int issueId, int projectId)
List<ExecutionWrapper>
getExecutionsByCycleId(String cycleId, int issueId, int projectId)
List<ExecutionWrapper>
getExecutionsByZQL(String zqlQuery)
CycleList
getListOfCycles(Integer projectId, Integer versionId)
StepResults
getStepResultsByExecution(String executionID, int issueId)
TestStepList
getTestSteps(Integer issueId, Integer projectId)
Object
updateExecution(String executionID, Execution newExecution)
Object
updateStepResult(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)
-
-