resendMail method added

This commit is contained in:
geek 2018-06-15 16:25:09 +09:00
parent 79a724263c
commit 4208c5e725
2 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.79-SNAPSHOT</version> <version>1.0.80-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -4,6 +4,7 @@ import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException; import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.model.domain.DomainMember; import com.loafle.overflow.model.domain.DomainMember;
import com.loafle.overflow.model.member.Member; import com.loafle.overflow.model.member.Member;
import com.loafle.overflow.model.meta.MetaEmailType;
import java.util.List; import java.util.List;
@ -20,6 +21,9 @@ public interface MemberService {
@WebappAPI @WebappAPI
Member sendEmailForPassword(String email) throws OverflowException; Member sendEmailForPassword(String email) throws OverflowException;
@WebappAPI
Member reSendEmail(String email) throws OverflowException;
@WebappAPI @WebappAPI
Member resetPassword(String token, String password) throws OverflowException; Member resetPassword(String token, String password) throws OverflowException;