This commit is contained in:
crusader 2018-06-20 15:05:35 +09:00
parent dd628fb7ca
commit 14feb6e924
3 changed files with 11 additions and 11 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId>
<packaging>jar</packaging>
<version>1.0.86-SNAPSHOT</version>
<version>1.0.87-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name>
<properties>

View File

@ -14,7 +14,7 @@ import java.util.Date;
public class Member {
private Long id;
private String email;
private transient String password;
private transient String pw;
private String name;
private String phone;
private String companyName;
@ -52,13 +52,13 @@ public class Member {
@Basic
@JsonIgnore
@Column(name = "PASSWORD", nullable = true, length = 64)
public String getPassword() {
return password;
@Column(name = "PW", nullable = true, length = 64)
public String getPw() {
return pw;
}
public void setPassword(String password) {
this.password = password;
public void setPw(String pw) {
this.pw = pw;
}
@Basic

View File

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