]> git.basschouten.com Git - openhab-addons.git/blob
806a9c173c75181adccc41d1d7ce1969588259bb
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.bsblan.internal.configuration;
14
15 /**
16  * The {@link BsbLanBridgeConfiguration} is the class used to match the
17  * bridge configuration.
18  *
19  * @author Peter Schraffl - Initial contribution
20  */
21 public class BsbLanBridgeConfiguration {
22     /**
23      * Hostname or IP address of the device
24      */
25     public String host;
26
27     /**
28      * HTTP port where device is listening
29      */
30     public Integer port;
31
32     /**
33      * For "security" feature of BSB-LAN devices
34      */
35     public String passkey;
36
37     /**
38      * HTTP Basic Authentication User
39      */
40     public String username;
41
42     /**
43      * HTTP Basic Authentication Password
44      */
45     public String password;
46
47     /**
48      * Value refresh interval
49      */
50     public Integer refreshInterval;
51 }