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>
<artifactId>commons-java</artifactId>
<packaging>jar</packaging>
<version>1.0.79-SNAPSHOT</version>
<version>1.0.80-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name>
<properties>
@ -92,4 +92,4 @@
</plugin> -->
</plugins>
</build>
</project>
</project>

View File

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