]> git.basschouten.com Git - openhab-addons.git/blob
b090dce63ff35d2e17d06513c6f7c7ae9002a858
[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  * Auxiliary devices.
17  *
18  * @author Dan Cunningham - Initial contribution
19  *
20  */
21 public class Auxiliary {
22
23     private String state;
24
25     private String label;
26
27     private String icon;
28
29     private String type;
30
31     private String subtype;
32
33     private String name;
34
35     public String getState() {
36         return state;
37     }
38
39     public void setState(String state) {
40         this.state = state;
41     }
42
43     public String getLabel() {
44         return label;
45     }
46
47     public void setLabel(String label) {
48         this.label = label;
49     }
50
51     public String getIcon() {
52         return icon;
53     }
54
55     public void setIcon(String icon) {
56         this.icon = icon;
57     }
58
59     public String getType() {
60         return type;
61     }
62
63     public void setType(String type) {
64         this.type = type;
65     }
66
67     public String getSubtype() {
68         return subtype;
69     }
70
71     public void setSubtype(String subtype) {
72         this.subtype = subtype;
73     }
74
75     public String getName() {
76         return name;
77     }
78
79     public void setName(String name) {
80         this.name = name;
81     }
82 }