|
@ -8,6 +8,7 @@ public class SessionUser {
|
8
|
8
|
private String email;
|
9
|
9
|
private String mobilePhone;
|
10
|
10
|
private String name;
|
|
11
|
private String authentication;
|
11
|
12
|
private String authStatus;
|
12
|
13
|
|
13
|
14
|
public String getName() {
|
|
@ -46,6 +47,12 @@ public class SessionUser {
|
46
|
47
|
public void setMobilePhone(String mobilePhone) {
|
47
|
48
|
this.mobilePhone = mobilePhone;
|
48
|
49
|
}
|
|
50
|
public String getAuthentication() {
|
|
51
|
return authentication;
|
|
52
|
}
|
|
53
|
public void setAuthentication(String authentication) {
|
|
54
|
this.authentication = authentication;
|
|
55
|
}
|
49
|
56
|
public String getAuthStatus() {
|
50
|
57
|
return authStatus;
|
51
|
58
|
}
|