ing
This commit is contained in:
parent
c429c01dec
commit
6d6709ee12
2
pom.xml
2
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
@ -43,5 +43,5 @@ public interface MemberService {
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user