]> git.basschouten.com Git - openhab-addons.git/blob
1ee8052d4adf1ae01a7a771630e2c2e969987560
[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.robonect.internal.config;
14
15 /**
16  *
17  * This class acts simply a structure for holding the thing configuration.
18  *
19  * @author Marco Meyer - Initial contribution
20  */
21 public class RobonectConfig {
22
23     private String host;
24
25     private String user;
26
27     private String password;
28
29     private int pollInterval;
30
31     private int offlineTimeout;
32
33     private String timezone;
34
35     public String getHost() {
36         return host;
37     }
38
39     public String getUser() {
40         return user;
41     }
42
43     public String getPassword() {
44         return password;
45     }
46
47     public int getPollInterval() {
48         return pollInterval;
49     }
50
51     public int getOfflineTimeout() {
52         return offlineTimeout;
53     }
54
55     public String getTimezone() {
56         return timezone;
57     }
58 }