]> git.basschouten.com Git - openhab-addons.git/blob
91cebe0602681ead0d22b34d36218ad2a9dbfba0
[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.touchwand.internal.dto;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link IdData} implements IdData data class.
19  *
20  * @author Roie Geron - Initial contribution
21  */
22 @NonNullByDefault
23 public class IdData {
24
25     private String status = "";
26     private String subType = "";
27     private String zone = "";
28     private String id = "";
29     private boolean hasOff;
30     private boolean hasMode;
31     private String type = "";
32     private boolean isTempSensor;
33
34     public String getId() {
35         return this.id;
36     }
37
38     public void setId(String id) {
39         this.id = id;
40     }
41
42     public boolean isHasOff() {
43         return this.hasOff;
44     }
45
46     public boolean getHasOff() {
47         return this.hasOff;
48     }
49
50     public void setHasOff(boolean hasOff) {
51         this.hasOff = hasOff;
52     }
53
54     public boolean isHasMode() {
55         return this.hasMode;
56     }
57
58     public boolean getHasMode() {
59         return this.hasMode;
60     }
61
62     public void setHasMode(boolean hasMode) {
63         this.hasMode = hasMode;
64     }
65
66     public String getType() {
67         return this.type;
68     }
69
70     public void setType(String type) {
71         this.type = type;
72     }
73
74     public boolean isIsTempSensor() {
75         return this.isTempSensor;
76     }
77
78     public boolean getIsTempSensor() {
79         return this.isTempSensor;
80     }
81
82     public void setIsTempSensor(boolean isTempSensor) {
83         this.isTempSensor = isTempSensor;
84     }
85
86     public String getStatus() {
87         return status;
88     }
89
90     public void setStatus(String status) {
91         this.status = status;
92     }
93
94     public String getSubType() {
95         return subType;
96     }
97
98     public void setSubType(String subType) {
99         this.subType = subType;
100     }
101
102     public String getZone() {
103         return zone;
104     }
105
106     public void setZone(String zone) {
107         this.zone = zone;
108     }
109 }