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>
|
<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>
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user