Class TurNLPVendorAPI

Object
TurNLPVendorAPI

@RestController @RequestMapping("/api/nlp/vendor") public class TurNLPVendorAPI extends Object
  • Constructor Details

  • Method Details

    • turNLPVendorList

      @GetMapping public List<TurNLPVendor> turNLPVendorList()
    • turNLPVendorGet

      @GetMapping("/{id}") public TurNLPVendor turNLPVendorGet(@PathVariable String id)
    • turNLPVendorUpdate

      @PutMapping("/{id}") public TurNLPVendor turNLPVendorUpdate(@PathVariable String id, @RequestBody TurNLPVendor turNLPVendor)
    • turNLPVendorDelete

      @Transactional @DeleteMapping("/{id}") public boolean turNLPVendorDelete(@PathVariable String id)
    • turNLPVendorAdd

      @PostMapping public TurNLPVendor turNLPVendorAdd(@RequestBody TurNLPVendor turNLPVendor)