]> git.basschouten.com Git - openhab-addons.git/blob
e38a5f62bfdd40880d44d01807c22b614cfef31b
[openhab-addons.git] /
1 /**
2  * Copyright 2017-2018 Gregory Moyer and contributors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openhab.binding.lametrictime.api.cloud.model;
17
18 import java.util.ArrayList;
19 import java.util.List;
20
21 public class Icons
22 {
23     private IconsMetadata meta;
24     private List<Icon> data = new ArrayList<Icon>();
25
26     public IconsMetadata getMeta()
27     {
28         return meta;
29     }
30
31     public void setMeta(IconsMetadata meta)
32     {
33         this.meta = meta;
34     }
35
36     public Icons withMeta(IconsMetadata meta)
37     {
38         this.meta = meta;
39         return this;
40     }
41
42     public List<Icon> getData()
43     {
44         return data;
45     }
46
47     public void setData(List<Icon> data)
48     {
49         this.data = data;
50     }
51
52     public Icons withData(List<Icon> data)
53     {
54         this.data = data;
55         return this;
56     }
57 }