ing
This commit is contained in:
parent
dd628fb7ca
commit
14feb6e924
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user