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.dominoswiss.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link DominoswissConfiguration} class contains fields mapping thing configuration parameters.
20 * @author Frieso Aeschbacher - Initial contribution
23 public class DominoswissConfiguration {
28 public String ipAddress = "localhost";
30 * Server web port for REST calls
32 public int port = 1318;
35 * Language for TTS has to be fix to EN as only English commands are allowed
37 public final String language = "EN";