Skip to content

Instantly share code, notes, and snippets.

Created October 8, 2013 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ffed6274ff3ed0c726ef to your computer and use it in GitHub Desktop.
Save anonymous/ffed6274ff3ed0c726ef to your computer and use it in GitHub Desktop.
passwordResetTokenDao.save(token);
token.setUserId(userId)
.setPasswordResetToken(randomStringService.generateRandomString())
.setIssuedTimestamp(creationTime)
.setValidTo(creationTime + DateTimeConstants.MILLIS_PER_DAY);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment