()
| 14 | @RequestMapping("/login") |
| 15 | public class LoginController { |
| 16 | @GetMapping("/login") |
| 17 | public String loginForm() { |
| 18 | return "loginForm"; |
| 19 | } |
| 20 | |
| 21 | @PostMapping("/login") |
| 22 | public String login(String id, String pwd, boolean rememberId, HttpServletResponse response) throws Exception { |
nothing calls this directly
no outgoing calls
no test coverage detected