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

@@ -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;