Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. @RequestMapping(value = "/userbyactivationkey/{activationKey}", method = RequestMethod.GET)
  2. public ResponseEntity<String> userbyactivationkey(@PathVariable String activationKey)
  3. {
  4. String email = userService.getUserByActivationKey(activationKey);
  5. return new ResponseEntity<String>(email, HttpStatus.OK);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement