Interface TestPlanControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-09-30T20:29:54.074332732Z[Etc/UTC]")
@Validated
public interface TestPlanControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<UUID> PUT /testplan/va/{vaId} : Creates new Test Plan with name provided.org.springframework.http.ResponseEntity<Void> DELETE /testplan/va/{vaId} : Deletes Test Plan with provided name.org.springframework.http.ResponseEntity<List<DataSetListIdNameLabelsTestPlanViewDto>> getDataSetListsUnderTestPlan(UUID testPlanId) GET /testplan/{testPlanId}/dsl : Returns dataSetLists with selected Test Planorg.springframework.http.ResponseEntity<List<TestPlanDto>> getTestPlans(UUID vaId) GET /testplan/va/{vaId} : Returns all test plans for selected visibility area.
-
Method Details
-
create
@RequestMapping(method=PUT, value="/testplan/va/{vaId}", produces="application/json") org.springframework.http.ResponseEntity<UUID> create(@PathVariable("vaId") UUID vaId, @NotNull @Valid @RequestParam(value="name",required=true) @NotNull @Valid String name) PUT /testplan/va/{vaId} : Creates new Test Plan with name provided.- Parameters:
vaId- vaId (required)name- name (required)- Returns:
- OK (status code 200) or Created (status code 201) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
delete
@RequestMapping(method=DELETE, value="/testplan/va/{vaId}") org.springframework.http.ResponseEntity<Void> delete(@PathVariable("vaId") UUID vaId, @NotNull @Valid @RequestParam(value="name",required=true) @NotNull @Valid String name) DELETE /testplan/va/{vaId} : Deletes Test Plan with provided name.- Parameters:
vaId- vaId (required)name- name (required)- Returns:
- OK (status code 200) or No Content (status code 204) or Unauthorized (status code 401) or Forbidden (status code 403)
-
getDataSetListsUnderTestPlan
@RequestMapping(method=GET, value="/testplan/{testPlanId}/dsl", produces="application/json") org.springframework.http.ResponseEntity<List<DataSetListIdNameLabelsTestPlanViewDto>> getDataSetListsUnderTestPlan(@PathVariable("testPlanId") UUID testPlanId) GET /testplan/{testPlanId}/dsl : Returns dataSetLists with selected Test Plan- Parameters:
testPlanId- testPlanId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getTestPlans
@RequestMapping(method=GET, value="/testplan/va/{vaId}", produces="application/json") org.springframework.http.ResponseEntity<List<TestPlanDto>> getTestPlans(@PathVariable("vaId") UUID vaId) GET /testplan/va/{vaId} : Returns all test plans for selected visibility area.- Parameters:
vaId- vaId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-