]> git.basschouten.com Git - openhab-addons.git/blob
7171a0baedc8ff98640ab1aecf70d53597db8513
[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
14 package org.openhab.binding.touchwand.internal.dto;
15
16 import org.eclipse.jdt.annotation.NonNullByDefault;
17
18 /**
19  * The {@link TouchWandThermostatCurrentStatus} implements Thermostat unit
20  * CurrentStatus data property.
21  *
22  * @author Roie Geron - Initial contribution
23  */
24
25 @NonNullByDefault
26 public class TouchWandThermostatCurrentStatus {
27
28     private String ac_type = "";
29     private int value;
30     private int thermo_mode;
31     private String mode = "";
32     private int temp;
33     private int thermo_temp;
34     private String state = "";
35     private int roomTemp;
36     private String fan = "";
37     private String communication_status = "";
38
39     public String getAcType() {
40         return this.ac_type;
41     }
42
43     public void setAcType(String ac_type) {
44         this.ac_type = ac_type;
45     }
46
47     public int getValue() {
48         return this.value;
49     }
50
51     public void setValue(int value) {
52         this.value = value;
53     }
54
55     public int getThermoMode() {
56         return this.thermo_mode;
57     }
58
59     public void setThermoMode(int thermo_mode) {
60         this.thermo_mode = thermo_mode;
61     }
62
63     public String getMode() {
64         return this.mode;
65     }
66
67     public void setMode(String mode) {
68         this.mode = mode;
69     }
70
71     public int getTemp() {
72         return this.temp;
73     }
74
75     public void setTemp(int temp) {
76         this.temp = temp;
77     }
78
79     public int getTargetTemperature() {
80         return this.thermo_temp;
81     }
82
83     public void setTargetTemperature(int thermo_temp) {
84         this.thermo_temp = thermo_temp;
85     }
86
87     public String getState() {
88         return this.state;
89     }
90
91     public void setState(String state) {
92         this.state = state;
93     }
94
95     public int getRoomTemperature() {
96         return this.roomTemp;
97     }
98
99     public void setRoomTemperature(int roomTemp) {
100         this.roomTemp = roomTemp;
101     }
102
103     public String getFanLevel() {
104         return this.fan;
105     }
106
107     public void setFanLevel(String fan) {
108         this.fan = fan;
109     }
110
111     public String getCommunicationStatus() {
112         return this.communication_status;
113     }
114
115     public void setCommunicationStatus(String communication_status) {
116         this.communication_status = communication_status;
117     }
118 }