Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / android / android_api / base / src / main / java / org / iotivity / base / OicSecAcl.java
1 /*\r
2  *******************************************************************\r
3  *\r
4  * Copyright 2016 Samsung Electronics All Rights Reserved.\r
5  *\r
6  *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
7  *\r
8  * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * you may not use this file except in compliance with the License.\r
10  * You may obtain a copy of the License at\r
11  *\r
12  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing, software\r
15  * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * See the License for the specific language governing permissions and\r
18  * limitations under the License.\r
19  *\r
20  *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
21  */\r
22 \r
23 package org.iotivity.base;\r
24 \r
25 import java.util.List;\r
26 \r
27 public class OicSecAcl {\r
28     private String rownerID;\r
29     private List<OicSecAce> oicSecAces;\r
30 \r
31    public OicSecAcl (String rownerID, List<OicSecAce> oicSecAces) {\r
32        super();\r
33        this.rownerID = rownerID;\r
34        this.oicSecAces = oicSecAces;\r
35    }\r
36     public String getRownerID() {\r
37         return rownerID;\r
38     }\r
39 \r
40     public void setRownerID(String rownerID) {\r
41         this.rownerID = rownerID;\r
42     }\r
43 \r
44     public List<OicSecAce> getOicSecAcesList() {\r
45         return oicSecAces;\r
46     }\r
47 \r
48     public OicSecAce[] getOicSecAces() {\r
49         return oicSecAces.toArray(new OicSecAce[oicSecAces.size()]);\r
50     }\r
51 \r
52     public void setOicSecAces(List<OicSecAce> oicSecAces) {\r
53         this.oicSecAces = oicSecAces;\r
54     }\r
55 }\r