Correct serialized name
This commit is contained in:
parent
3a4d879309
commit
3460c68763
@ -2,11 +2,11 @@ package wekan.wrapper.entity;
|
|||||||
|
|
||||||
public class UserEmail {
|
public class UserEmail {
|
||||||
public String getEmail() {
|
public String getEmail() {
|
||||||
return email;
|
return address;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEmail(String email) {
|
public void setEmail(String email) {
|
||||||
this.email = email;
|
this.address = email;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isVerified() {
|
public boolean isVerified() {
|
||||||
@ -20,11 +20,11 @@ public class UserEmail {
|
|||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "UserEmail{" +
|
return "UserEmail{" +
|
||||||
"email='" + email + '\'' +
|
"adrress='" + address + '\'' +
|
||||||
", verified=" + verified +
|
", verified=" + verified +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
|
|
||||||
private String email;
|
private String address;
|
||||||
private boolean verified;
|
private boolean verified;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user