diff --git a/pom.xml b/pom.xml index 2a84aa9..42b4011 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ com.loafle.overflow commons-java jar - 1.0.61-SNAPSHOT + 1.0.62-SNAPSHOT com.loafle.overflow.commons-java diff --git a/src/main/java/com/loafle/overflow/service/central/member/MemberService.java b/src/main/java/com/loafle/overflow/service/central/member/MemberService.java index 2d8fd21..1d4c4ea 100644 --- a/src/main/java/com/loafle/overflow/service/central/member/MemberService.java +++ b/src/main/java/com/loafle/overflow/service/central/member/MemberService.java @@ -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 readAllByProbeKey(String probeKey) throws OverflowException; - + } diff --git a/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java b/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java index c79181f..54ff294 100644 --- a/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java +++ b/src/main/java/com/loafle/overflow/service/central/noauthprobe/NoAuthProbeService.java @@ -21,7 +21,7 @@ public interface NoAuthProbeService { NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException; @WebappAPI - List readAllByDomainID(Long id) throws OverflowException; + List readAllByDomainID(Long domainID) throws OverflowException; @WebappAPI List acceptNoAuthProbe(Long id, String zoneCIDR) throws OverflowException;