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 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)