Hi my friend, build the project targeting the tag 0.1.0 like Sebastien mentioned.
Regarding the e-mail validation, I can be wrong, but I think this is up to the
implementer. For example if you look
at https://github.com/abstractj/password-reset/blob/master/src/main/java/...
that would be some service created by the developer, as well the service for check if that
e-mail provided is was provided
https://github.com/abstractj/password-reset/blob/master/src/main/java/org....
The goal of the TokenService interface is to enable developers to implement it with
whatever storage they want. But of course, I’m open for suggestions.
--
abstractj
On December 12, 2013 at 8:35:26 AM, Sebastien Blanc (scm.blanc(a)gmail.com) wrote:
> Good morning Bruno,
The required configuration seems reasonable and the workflow
is as
discussed in a previous thread.
Does it make sense to validate that the passed value is e-mail
address
(maybe by using Apache Commons EmailValidator) before passing
it to the
service?
btw I had to catch an InvalidKeySpecException inside TokenServiceImpl
class in order to compile the password-reset.