package com.pollex.pam.web.rest; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Deprecated @RestController @RequestMapping("/api/test/sendMsg") public class TestSendMsgResource { @PostMapping("/bySMS") public ResponseEntity bySMS(@RequestBody Object param) { } @PostMapping("/byEmail") public ResponseEntity byEmail(@RequestBody Object param) { } }