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> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.86-SNAPSHOT</version> <version>1.0.87-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

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

View File

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