[IOT-1532] added GroupAclManager for managing group between acl
[platform/upstream/iotivity.git] / cloud / account / src / main / java / org / iotivity / cloud / accountserver / db / AceTable.java
1 /*
2  * //******************************************************************
3  * //
4  * // Copyright 2016 Samsung Electronics All Rights Reserved.
5  * //
6  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7  * //
8  * // Licensed under the Apache License, Version 2.0 (the "License");
9  * // you may not use this file except in compliance with the License.
10  * // You may obtain a copy of the License at
11  * //
12  * //      http://www.apache.org/licenses/LICENSE-2.0
13  * //
14  * // Unless required by applicable law or agreed to in writing, software
15  * // distributed under the License is distributed on an "AS IS" BASIS,
16  * // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * // See the License for the specific language governing permissions and
18  * // limitations under the License.
19  * //
20  * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21  */
22 package org.iotivity.cloud.accountserver.db;
23
24 public class AceTable {
25
26     private String gid;
27     private String di;
28     private String uid;
29     private String aceid;
30     private String oid;
31
32     public AceTable(String gid, String di, String uid, String aceid, String oid,
33             String href) {
34         this.gid = gid;
35         this.di = di;
36         this.uid = uid;
37         this.aceid = aceid;
38         this.oid = oid;
39     }
40
41     public AceTable() {
42     }
43
44     public String getGid() {
45         return gid;
46     }
47
48     public void setGid(String gid) {
49         this.gid = gid;
50     }
51
52     public String getDi() {
53         return di;
54     }
55
56     public void setDi(String di) {
57         this.di = di;
58     }
59
60     public String getUid() {
61         return uid;
62     }
63
64     public void setUid(String uid) {
65         this.uid = uid;
66     }
67
68     public String getAceid() {
69         return aceid;
70     }
71
72     public void setAceid(String aceid) {
73         this.aceid = aceid;
74     }
75
76     public String getOid() {
77         return oid;
78     }
79
80     public void setOid(String oid) {
81         this.oid = oid;
82     }
83 }