Package step.core.repositories
Interface Repository
-
- All Known Implementing Classes:
AbstractRepository,ArtifactRepository,LocalRepository,StagingRepository
public interface Repository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancompareCanonicalRepositoryParameters(Map<String,String> repositoryParameters1, Map<String,String> repositoryParameters2)Compares the canonical subset of the repository parameters.voidexportExecution(ExecutionContext context, Map<String,String> repositoryParameters)ArtefactInfogetArtefactInfo(Map<String,String> repositoryParameters)TestSetStatusOverviewgetTestSetStatusOverview(Map<String,String> repositoryParameters)ImportResultimportArtefact(ExecutionContext context, Map<String,String> repositoryParameters)
-
-
-
Method Detail
-
getArtefactInfo
ArtefactInfo getArtefactInfo(Map<String,String> repositoryParameters) throws Exception
- Throws:
Exception
-
getTestSetStatusOverview
TestSetStatusOverview getTestSetStatusOverview(Map<String,String> repositoryParameters) throws Exception
- Throws:
Exception
-
importArtefact
ImportResult importArtefact(ExecutionContext context, Map<String,String> repositoryParameters) throws Exception
- Throws:
Exception
-
exportExecution
void exportExecution(ExecutionContext context, Map<String,String> repositoryParameters) throws Exception
- Throws:
Exception
-
compareCanonicalRepositoryParameters
boolean compareCanonicalRepositoryParameters(Map<String,String> repositoryParameters1, Map<String,String> repositoryParameters2)
Compares the canonical subset of the repository parameters. The canonical subset of the parameters corresponds to the minimal entries that uniquely identify the repository object in its repository- Parameters:
repositoryParameters1-repositoryParameters2-- Returns:
- true if the canonical subset of both repository parameters are the same
-
-