]> git.basschouten.com Git - openhab-addons.git/blob
1f635baa235cbc8901de1229be2538467fae2098
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.iaqualink.internal.api.dto;
14
15 import java.util.Map;
16
17 /**
18  * {@link Home} refers to the "Home" screen of a pool controller.
19  *
20  * @author Dan Cunningham - Initial contribution
21  *
22  */
23 public class Home {
24
25     private String status;
26
27     private String response;
28
29     private String systemType;
30
31     private String tempScale;
32
33     private String spaTemp;
34
35     private String poolTemp;
36
37     private String airTemp;
38
39     private String spaSetPoint;
40
41     private String poolSetPoint;
42
43     private String coverPool;
44
45     private String freezeProtection;
46
47     private String spaPump;
48
49     private String poolPump;
50
51     private String spaHeater;
52
53     private String poolHeater;
54
55     private String solarHeater;
56
57     private String spaSalinity;
58
59     private String poolSalinity;
60
61     private String orp;
62
63     private String ph;
64
65     private Map<String, String> serializedMap;
66
67     public String getStatus() {
68         return status;
69     }
70
71     public void setStatus(String status) {
72         this.status = status;
73     }
74
75     public String getResponse() {
76         return response;
77     }
78
79     public void setResponse(String response) {
80         this.response = response;
81     }
82
83     public String getSystemType() {
84         return systemType;
85     }
86
87     public void setSystemType(String systemType) {
88         this.systemType = systemType;
89     }
90
91     public String getTempScale() {
92         return tempScale;
93     }
94
95     public void setTempScale(String tempScale) {
96         this.tempScale = tempScale;
97     }
98
99     public String getSpaTemp() {
100         return spaTemp;
101     }
102
103     public void setSpaTemp(String spaTemp) {
104         this.spaTemp = spaTemp;
105     }
106
107     public String getPoolTemp() {
108         return poolTemp;
109     }
110
111     public void setPoolTemp(String poolTemp) {
112         this.poolTemp = poolTemp;
113     }
114
115     public String getAirTemp() {
116         return airTemp;
117     }
118
119     public void setAirTemp(String airTemp) {
120         this.airTemp = airTemp;
121     }
122
123     public String getSpaSetPoint() {
124         return spaSetPoint;
125     }
126
127     public void setSpaSetPoint(String spaSetPoint) {
128         this.spaSetPoint = spaSetPoint;
129     }
130
131     public String getPoolSetPoint() {
132         return poolSetPoint;
133     }
134
135     public void setPoolSetPoint(String poolSetPoint) {
136         this.poolSetPoint = poolSetPoint;
137     }
138
139     public String getCoverPool() {
140         return coverPool;
141     }
142
143     public void setCoverPool(String coverPool) {
144         this.coverPool = coverPool;
145     }
146
147     public String getFreezeProtection() {
148         return freezeProtection;
149     }
150
151     public void setFreezeProtection(String freezeProtection) {
152         this.freezeProtection = freezeProtection;
153     }
154
155     public String getSpaPump() {
156         return spaPump;
157     }
158
159     public void setSpaPump(String spaPump) {
160         this.spaPump = spaPump;
161     }
162
163     public String getPoolPump() {
164         return poolPump;
165     }
166
167     public void setPoolPump(String poolPump) {
168         this.poolPump = poolPump;
169     }
170
171     public String getSpaHeater() {
172         return spaHeater;
173     }
174
175     public void setSpaHeater(String spaHeater) {
176         this.spaHeater = spaHeater;
177     }
178
179     public String getPoolHeater() {
180         return poolHeater;
181     }
182
183     public void setPoolHeater(String poolHeater) {
184         this.poolHeater = poolHeater;
185     }
186
187     public String getSolarHeater() {
188         return solarHeater;
189     }
190
191     public void setSolarHeater(String solarHeater) {
192         this.solarHeater = solarHeater;
193     }
194
195     public String getSpaSalinity() {
196         return spaSalinity;
197     }
198
199     public void setSpaSalinity(String spaSalinity) {
200         this.spaSalinity = spaSalinity;
201     }
202
203     public String getPoolSalinity() {
204         return poolSalinity;
205     }
206
207     public void setPoolSalinity(String poolSalinity) {
208         this.poolSalinity = poolSalinity;
209     }
210
211     public String getOrp() {
212         return orp;
213     }
214
215     public void setOrp(String orp) {
216         this.orp = orp;
217     }
218
219     public String getPh() {
220         return ph;
221     }
222
223     public void setPh(String ph) {
224         this.ph = ph;
225     }
226
227     public Map<String, String> getSerializedMap() {
228         return serializedMap;
229     }
230 }