ing
This commit is contained in:
@@ -15,19 +15,19 @@ public interface MemberService {
|
||||
DomainMember signin(String signinId, String signinPw) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member signup(Member member, String pw) throws OverflowException;
|
||||
Member signup(Member member, String password) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member sendEmailForPassword(String email) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member resetPassword(String token, String pw) throws OverflowException;
|
||||
Member resetPassword(String token, String password) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member modify(Member member, String pw) throws OverflowException;
|
||||
Member modify(Member member, String password) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member forgotPassword(String signinId, String newPw) throws OverflowException;
|
||||
Member forgotPassword(String signinId, String newPassword) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Member read(Long memberId) throws OverflowException;
|
||||
@@ -43,5 +43,5 @@ public interface MemberService {
|
||||
|
||||
@WebappAPI
|
||||
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ public interface NoAuthProbeService {
|
||||
NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<NoAuthProbe> readAllByDomainID(Long id) throws OverflowException;
|
||||
List<NoAuthProbe> readAllByDomainID(Long domainID) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<NoAuthProbe> acceptNoAuthProbe(Long id, String zoneCIDR) throws OverflowException;
|
||||
|
||||
Reference in New Issue
Block a user