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.enigma2.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link Enigma2Configuration} class contains fields mapping thing configuration parameters.
20 * @author Guido Dolfen - Initial contribution
23 public class Enigma2Configuration {
26 * Hostname or IP address of the Enigma2 device.
28 public String host = "";
30 * The refresh interval in seconds.
32 public int refreshInterval = 5;
34 * The refresh interval in seconds.
36 public int timeout = 5;
38 * The Username of the Enigma2 Web API.
40 public String user = "";
42 * The Password of the Enigma2 Web API.
44 public String password = "";