Class TurMLModelAPI

Object
TurMLModelAPI

@RestController @RequestMapping("/api/ml/model") public class TurMLModelAPI extends Object
  • Constructor Details

  • Method Details

    • turMLModelList

      @GetMapping public List<TurMLModel> turMLModelList()
    • turMLModelGet

      @GetMapping("/{id}") public TurMLModel turMLModelGet(@PathVariable int id)
    • turMLModelUpdate

      @PutMapping("/{id}") public TurMLModel turMLModelUpdate(@PathVariable int id, @RequestBody TurMLModel turMLModel)
    • turMLModelDelete

      @Transactional @DeleteMapping("/{id}") public boolean turMLModelDelete(@PathVariable int id)
    • turMLModelAdd

      @PostMapping public TurMLModel turMLModelAdd(@RequestBody TurMLModel turMLModel)
    • turMLModelEvaluation

      @GetMapping("/evaluation") public String turMLModelEvaluation()
    • turMLModelGenerate

      @GetMapping("/generate") public String turMLModelGenerate()