Uses of Class
org.qubership.atp.ram.clients.api.dto.catalogue.TestScopeDto
Packages that use TestScopeDto
Package
Description
-
Uses of TestScopeDto in org.qubership.atp.ram.clients.api
Methods in org.qubership.atp.ram.clients.api that return types with arguments of type TestScopeDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<TestScopeDto>> TestScopeControllerApi.getAll()GET /catalog/api/v1/testscopes : getAllorg.springframework.http.ResponseEntity<List<TestScopeDto>> ProjectControllerApi.getShortScopesByProjectId(UUID uuid) GET /catalog/api/v1/projects/{uuid}/testscopes/short : getShortScopesByProjectIdorg.springframework.http.ResponseEntity<List<TestScopeDto>> ProjectControllerApi.getTestScopeByProjectId(UUID uuid) GET /catalog/api/v1/projects/{uuid}/testscopes : getTestScopeByProjectIdorg.springframework.http.ResponseEntity<TestScopeDto> TestScopeControllerApi.getTestScopeByUuid(UUID uuid) GET /catalog/api/v1/testscopes/{uuid} : getTestScopeByUuidorg.springframework.http.ResponseEntity<List<TestScopeDto>> TestPlanControllerApi.getTestScopesByTestPlanId(UUID uuid) GET /catalog/api/v1/testplans/{uuid}/testscopes : getTestScopesByTestPlanIdorg.springframework.http.ResponseEntity<TestScopeDto> TestScopeControllerApi.updateShort(@Valid TestScopeUpdateShortRequestDto testScopeUpdateShortRequestDto) PUT /catalog/api/v1/testscopes/save/short : updateShortMethods in org.qubership.atp.ram.clients.api with parameters of type TestScopeDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<UUID> TestScopeControllerApi.addExecutionCases(UUID uuid, @Valid TestScopeDto testScopeDto) PUT /catalog/api/v1/testscopes/{uuid}/testcases/save : addExecutionCasesorg.springframework.http.ResponseEntity<UUID> TestScopeControllerApi.update(@Valid TestScopeDto testScopeDto) PUT /catalog/api/v1/testscopes/save : updateorg.springframework.http.ResponseEntity<EnrichedScopeDto> TestScopeControllerApi.updateEnriched(@Valid TestScopeDto testScopeDto) PUT /catalog/api/v1/testscopes/save/enriched : updateEnriched -
Uses of TestScopeDto in org.qubership.atp.ram.clients.api.dto.catalogue
Methods in org.qubership.atp.ram.clients.api.dto.catalogue that return TestScopeDtoModifier and TypeMethodDescriptionTestScopeDto.addExecutionCasesItem(UUID executionCasesItem) TestScopeDto.addFlagsItem(TestScopeDto.FlagsEnum flagsItem) TestScopeDto.addPrerequisitesCasesItem(UUID prerequisitesCasesItem) TestScopeDto.addSolutionBuildItem(String solutionBuildItem) TestScopeDto.addSystemUnderTestHostItem(String systemUnderTestHostItem) TestScopeDto.addValidationCasesItem(UUID validationCasesItem) TestScopeDto.createdBy(UserInfoDto createdBy) TestScopeDto.createdWhen(OffsetDateTime createdWhen) TestScopeDto.description(String description) TestScopeDto.environmentUuid(UUID environmentUuid) TestScopeDto.executionCases(List<UUID> executionCases) TestScopeDto.flags(List<TestScopeDto.FlagsEnum> flags) TestScopeDto.modifiedBy(UserInfoDto modifiedBy) TestScopeDto.modifiedWhen(OffsetDateTime modifiedWhen) TestScopeDto.numberOfThreshold(Integer numberOfThreshold) TestScopeDto.prerequisitesCases(List<UUID> prerequisitesCases) TestScopeDto.projectUuid(UUID projectUuid) TestScopeDto.solutionBuild(List<String> solutionBuild) TestScopeDto.systemUnderTestHost(List<String> systemUnderTestHost) TestScopeDto.taToolsUuid(UUID taToolsUuid) TestScopeDto.testPlanUuid(UUID testPlanUuid) TestScopeDto.validationCases(List<UUID> validationCases) TestScopeDto.widgetConfigTemplateId(UUID widgetConfigTemplateId) Methods in org.qubership.atp.ram.clients.api.dto.catalogue that return types with arguments of type TestScopeDtoModifier and TypeMethodDescription@Valid List<TestScopeDto> TestCase0Dto.getTestScopes()Get testScopes@Valid Set<TestScopeDto> TestCaseResponseDto.getTestScopes()Get testScopes@Valid List<TestScopeDto> TestPlanEntitiesResponseDto.getTestScopes()Get testScopesMethods in org.qubership.atp.ram.clients.api.dto.catalogue with parameters of type TestScopeDtoModifier and TypeMethodDescriptionTestCase0Dto.addTestScopesItem(TestScopeDto testScopesItem) TestCaseResponseDto.addTestScopesItem(TestScopeDto testScopesItem) TestPlanEntitiesResponseDto.addTestScopesItem(TestScopeDto testScopesItem) Method parameters in org.qubership.atp.ram.clients.api.dto.catalogue with type arguments of type TestScopeDtoModifier and TypeMethodDescriptionvoidTestCase0Dto.setTestScopes(List<TestScopeDto> testScopes) voidTestCaseResponseDto.setTestScopes(Set<TestScopeDto> testScopes) voidTestPlanEntitiesResponseDto.setTestScopes(List<TestScopeDto> testScopes) TestCase0Dto.testScopes(List<TestScopeDto> testScopes) TestCaseResponseDto.testScopes(Set<TestScopeDto> testScopes) TestPlanEntitiesResponseDto.testScopes(List<TestScopeDto> testScopes)