Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @GetMapping(value="/generateotp/{username}")
  2. public String generateOTP(@PathVariable(value = "username") String userName) {
  3. loginService.generateOTP(userName);
  4. return "OTP Generated";
  5. }
  6.  
  7. http://localhost:8080/generateotp/shaik.moulali
Add Comment
Please, Sign In to add comment