Class QAController

java.lang.Object
com.lantanagroup.link.api.controller.BaseController
com.lantanagroup.link.api.controller.QAController

@RestController @RequestMapping("/api/qa/{tenantId}") @ConditionalOnProperty("api.allowQaEndpoints") public class QAController extends BaseController
  • Constructor Details

    • QAController

      public QAController()
  • Method Details

    • initBinder

      @InitBinder public void initBinder(org.springframework.web.bind.WebDataBinder binder)
    • deletePatientListById

      @DeleteMapping("/$deletePatientListById/{id}") public void deletePatientListById(@PathVariable String tenantId, @PathVariable UUID id)
    • deleteAllPatientData

      @DeleteMapping("/$deleteAllPatientData") public void deleteAllPatientData(@PathVariable String tenantId)
    • deletePatientByIDAndListId

      @DeleteMapping("/$deletePatientFromList/{patientListId}/{patientId}") public void deletePatientByIDAndListId(@PathVariable String tenantId, @PathVariable UUID patientListId, @PathVariable String patientId)
    • deleteReport

      @DeleteMapping("/$deleteReportById/{reportId}") public void deleteReport(@PathVariable String tenantId, @PathVariable String reportId)
    • setExecutorService

      public void setExecutorService(ExecutorService executorService)