Package step.repository.alm
Interface ALMRepository
-
- All Known Implementing Classes:
ALMRepositoryDaemon
public interface ALMRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description step.core.repositories.ArtefactInfo
getArtefactInfo(Map<String,String> repositoryParameters)
step.core.repositories.TestSetStatusOverview
getTestSetStatusOverview(Map<String,String> repositoryParameters)
step.core.repositories.ImportResult
importArtefact(Map<String,String> repositoryParameters, Map<String,String> executionAttributes)
void
reportExecution(Map<String,String> repositoryParameters, String executionId)
void
reportTestCaseExecution(Map<String,String> repositoryParameters, String testCaseReportNodeId, Integer runId)
Integer
reportTestCaseStart(Map<String,String> repositoryParameters, String testCaseReportNodeId)
-
-
-
Method Detail
-
getArtefactInfo
step.core.repositories.ArtefactInfo getArtefactInfo(Map<String,String> repositoryParameters) throws Exception
- Throws:
Exception
-
getTestSetStatusOverview
step.core.repositories.TestSetStatusOverview getTestSetStatusOverview(Map<String,String> repositoryParameters) throws Exception
- Throws:
Exception
-
importArtefact
step.core.repositories.ImportResult importArtefact(Map<String,String> repositoryParameters, Map<String,String> executionAttributes) throws Exception
- Throws:
Exception
-
reportExecution
void reportExecution(Map<String,String> repositoryParameters, String executionId) throws Exception
- Throws:
Exception
-
reportTestCaseStart
Integer reportTestCaseStart(Map<String,String> repositoryParameters, String testCaseReportNodeId) throws Exception
- Throws:
Exception
-
-