Class EmailVerificationServiceImpl
- java.lang.Object
-
- de.adorsys.ledgers.middleware.impl.service.EmailVerificationServiceImpl
-
- All Implemented Interfaces:
EmailVerificationService
@Service public class EmailVerificationServiceImpl extends Object implements EmailVerificationService
-
-
Constructor Summary
Constructors Constructor Description EmailVerificationServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfirmUser(String token)StringcreateVerificationToken(String email)voidsendVerificationEmail(String token)
-
-
-
Method Detail
-
createVerificationToken
public String createVerificationToken(String email)
- Specified by:
createVerificationTokenin interfaceEmailVerificationService
-
sendVerificationEmail
public void sendVerificationEmail(String token)
- Specified by:
sendVerificationEmailin interfaceEmailVerificationService
-
confirmUser
public void confirmUser(String token)
- Specified by:
confirmUserin interfaceEmailVerificationService
-
-