This commit is contained in:
crusader 2018-06-14 13:35:06 +09:00
parent c429c01dec
commit 6d6709ee12
3 changed files with 7 additions and 7 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.61-SNAPSHOT</version> <version>1.0.62-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -15,19 +15,19 @@ public interface MemberService {
DomainMember signin(String signinId, String signinPw) throws OverflowException; DomainMember signin(String signinId, String signinPw) throws OverflowException;
@WebappAPI @WebappAPI
Member signup(Member member, String pw) throws OverflowException; Member signup(Member member, String password) throws OverflowException;
@WebappAPI @WebappAPI
Member sendEmailForPassword(String email) throws OverflowException; Member sendEmailForPassword(String email) throws OverflowException;
@WebappAPI @WebappAPI
Member resetPassword(String token, String pw) throws OverflowException; Member resetPassword(String token, String password) throws OverflowException;
@WebappAPI @WebappAPI
Member modify(Member member, String pw) throws OverflowException; Member modify(Member member, String password) throws OverflowException;
@WebappAPI @WebappAPI
Member forgotPassword(String signinId, String newPw) throws OverflowException; Member forgotPassword(String signinId, String newPassword) throws OverflowException;
@WebappAPI @WebappAPI
Member read(Long memberId) throws OverflowException; Member read(Long memberId) throws OverflowException;

View File

@ -21,7 +21,7 @@ public interface NoAuthProbeService {
NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException; NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException;
@WebappAPI @WebappAPI
List<NoAuthProbe> readAllByDomainID(Long id) throws OverflowException; List<NoAuthProbe> readAllByDomainID(Long domainID) throws OverflowException;
@WebappAPI @WebappAPI
List<NoAuthProbe> acceptNoAuthProbe(Long id, String zoneCIDR) throws OverflowException; List<NoAuthProbe> acceptNoAuthProbe(Long id, String zoneCIDR) throws OverflowException;