]> git.basschouten.com Git - openhab-addons.git/blob
dfd12b443ef261a4776b100e713fbacca3d20f87
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.nuvo.internal.configuration;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17
18 /**
19  * The {@link NuvoThingConfiguration} class contains fields mapping thing configuration parameters.
20  *
21  * @author Michael Lobstein - Initial contribution
22  */
23 @NonNullByDefault
24 public class NuvoThingConfiguration {
25
26     public @Nullable String serialPort;
27     public @Nullable String host;
28     public @Nullable Integer port;
29     public @Nullable Integer numZones;
30     public boolean clockSync;
31     public String favoriteLabels = "";
32     public Integer nuvoNetSrc1 = 0;
33     public Integer nuvoNetSrc2 = 0;
34     public Integer nuvoNetSrc3 = 0;
35     public Integer nuvoNetSrc4 = 0;
36     public Integer nuvoNetSrc5 = 0;
37     public Integer nuvoNetSrc6 = 0;
38     public String favoritesSrc1 = "";
39     public String favoritesSrc2 = "";
40     public String favoritesSrc3 = "";
41     public String favoritesSrc4 = "";
42     public String favoritesSrc5 = "";
43     public String favoritesSrc6 = "";
44     public String favPrefix1 = "";
45     public String favPrefix2 = "";
46     public String favPrefix3 = "";
47     public String favPrefix4 = "";
48     public String favPrefix5 = "";
49     public String favPrefix6 = "";
50     public String menuXmlSrc1 = "";
51     public String menuXmlSrc2 = "";
52     public String menuXmlSrc3 = "";
53     public String menuXmlSrc4 = "";
54     public String menuXmlSrc5 = "";
55     public String menuXmlSrc6 = "";
56 }