Interface RamTestPlansFeignClient
@FeignClient(name="${feign.atp.ram.name}",
url="${feign.atp.ram.url}",
path="${feign.atp.ram.route}",
configuration=org.qubership.atp.auth.springbootstarter.config.FeignConfiguration.class)
public interface RamTestPlansFeignClient
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<TestPlanDto> createTestPlan(TestPlanDto testPlanDto) org.springframework.http.ResponseEntity<List<TestPlanDto>> search(TestPlansSearchRequestDto requestDto)
-
Method Details
-
search
@RequestMapping(method=POST, value="/api/testplans/search", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<List<TestPlanDto>> search(@RequestBody(required=false) TestPlansSearchRequestDto requestDto) -
createTestPlan
@RequestMapping(method=POST, value="/api/testplans/create", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<TestPlanDto> createTestPlan(@RequestBody(required=false) TestPlanDto testPlanDto)
-