Implement acl/group resource in cloud account server.
[platform/upstream/iotivity.git] / cloud / account / src / main / java / org / iotivity / cloud / accountserver / db / UserTable.java
1 package org.iotivity.cloud.accountserver.db;
2
3 public class UserTable {
4     private String uuid     = null;
5     private String userid   = null;
6     private String provider = null;
7     private String email    = null;
8     private String phone    = null;
9
10     public String getUuid() {
11         return uuid;
12     }
13
14     public void setUuid(Object uuid) {
15         if (uuid != null)
16             this.uuid = uuid.toString();
17     }
18
19     public String getUserid() {
20         return userid;
21     }
22
23     public void setUserid(Object userid) {
24         if (userid != null)
25             this.userid = userid.toString();
26     }
27
28     public String getProvider() {
29         return provider;
30     }
31
32     public void setProvider(Object provider) {
33         if (provider != null)
34             this.provider = provider.toString();
35     }
36
37     public String getEmail() {
38         return email;
39     }
40
41     public void setEmail(Object email) {
42         if (email != null)
43             this.email = email.toString();
44     }
45
46     public String getPhone() {
47         return phone;
48     }
49
50     public void setPhone(Object phone) {
51         if (phone != null)
52             this.phone = phone.toString();
53     }
54
55 }