]> git.basschouten.com Git - openhab-addons.git/blob
044b9ab06ef4864b63d60a530bb7dc93dfd74c06
[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 /**
16  * OneTouch Macros.
17  *
18  * @author Dan Cunningham - Initial contribution
19  *
20  */
21 public class OneTouch {
22
23     private String status;
24
25     private String state;
26
27     private String label;
28
29     private String name;
30
31     public String getStatus() {
32         return status;
33     }
34
35     public void setStatus(String status) {
36         this.status = status;
37     }
38
39     public String getState() {
40         return state;
41     }
42
43     public void setState(String state) {
44         this.state = state;
45     }
46
47     public String getLabel() {
48         return label;
49     }
50
51     public void setLabel(String label) {
52         this.label = label;
53     }
54
55     public String getName() {
56         return name;
57     }
58
59     public void setName(String name) {
60         this.name = name;
61     }
62 }