]> git.basschouten.com Git - openhab-addons.git/blob
2111d758dccc956cf6eeea677477c6fb4160363c
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.icloud.internal.json.response;
14
15 /**
16  * Serializable class to parse json response received from the Apple server.
17  *
18  * @author Patrik Gfeller - Initial Contribution
19  *
20  */
21 public class ICloudDeviceFeatures {
22     private boolean CLK;
23
24     private boolean CLT;
25
26     private boolean CWP;
27
28     private boolean KEY;
29
30     private boolean KPD;
31
32     private boolean LCK;
33
34     private boolean LKL;
35
36     private boolean LKM;
37
38     private boolean LLC;
39
40     private boolean LMG;
41
42     private boolean LOC;
43
44     private boolean LST;
45
46     private boolean MCS;
47
48     private boolean MSG;
49
50     private boolean PIN;
51
52     private boolean REM;
53
54     private boolean SND;
55
56     private boolean SVP;
57
58     private boolean TEU;
59
60     private boolean WIP;
61
62     private boolean WMG;
63
64     private boolean XRM;
65
66     public boolean getCLK() {
67         return this.CLK;
68     }
69
70     public boolean getCLT() {
71         return this.CLT;
72     }
73
74     public boolean getCWP() {
75         return this.CWP;
76     }
77
78     public boolean getKEY() {
79         return this.KEY;
80     }
81
82     public boolean getKPD() {
83         return this.KPD;
84     }
85
86     public boolean getLCK() {
87         return this.LCK;
88     }
89
90     public boolean getLKL() {
91         return this.LKL;
92     }
93
94     public boolean getLKM() {
95         return this.LKM;
96     }
97
98     public boolean getLLC() {
99         return this.LLC;
100     }
101
102     public boolean getLMG() {
103         return this.LMG;
104     }
105
106     public boolean getLOC() {
107         return this.LOC;
108     }
109
110     public boolean getLST() {
111         return this.LST;
112     }
113
114     public boolean getMCS() {
115         return this.MCS;
116     }
117
118     public boolean getMSG() {
119         return this.MSG;
120     }
121
122     public boolean getPIN() {
123         return this.PIN;
124     }
125
126     public boolean getREM() {
127         return this.REM;
128     }
129
130     public boolean getSND() {
131         return this.SND;
132     }
133
134     public boolean getSVP() {
135         return this.SVP;
136     }
137
138     public boolean getTEU() {
139         return this.TEU;
140     }
141
142     public boolean getWIP() {
143         return this.WIP;
144     }
145
146     public boolean getWMG() {
147         return this.WMG;
148     }
149
150     public boolean getXRM() {
151         return this.XRM;
152     }
153 }