2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.bsblan.internal.configuration;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.bsblan.internal.BsbLanBindingConstants;
19 * The {@link BsbLanBridgeConfiguration} is the class used to match the
20 * bridge configuration.
22 * @author Peter Schraffl - Initial contribution
25 public class BsbLanBridgeConfiguration {
27 * Hostname or IP address of the device
29 public String host = "";
32 * HTTP port where device is listening
34 public Integer port = BsbLanBindingConstants.DEFAULT_API_PORT;
37 * For "security" feature of BSB-LAN devices
39 public String passkey = "";
42 * HTTP Basic Authentication User
44 public String username = "";
47 * HTTP Basic Authentication Password
49 public String password = "";
52 * Value refresh interval
54 public Integer refreshInterval = BsbLanBindingConstants.DEFAULT_REFRESH_INTERVAL;