2 * Copyright (c) 2010-2022 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.freebox.internal.config;
16 * The {@link FreeboxServerConfiguration} is responsible for holding
17 * configuration informations needed to access/poll the freebox server
19 * @author Gaƫl L'hopital - Initial contribution
20 * @author Laurent Garnier - add discovery settings
22 public class FreeboxServerConfiguration {
24 public static final String FQDN = "fqdn";
25 public static final String APP_TOKEN = "appToken";
26 public static final String REFRESH_INTERVAL = "refreshInterval";
27 public static final String USE_ONLY_HTTP = "useOnlyHttp";
28 public static final String DISCOVER_PHONE = "discoverPhone";
29 public static final String DISCOVER_NET_DEVICE = "discoverNetDevice";
30 public static final String DISCOVER_NET_INTERFACE = "discoverNetInterface";
31 public static final String DISCOVER_AIRPLAY_RECEIVER = "discoverAirPlayReceiver";
34 public String appToken;
35 public Integer refreshInterval;
36 public Boolean useOnlyHttp;
37 public Boolean discoverPhone;
38 public Boolean discoverNetDevice;
39 public Boolean discoverNetInterface;
40 public Boolean discoverAirPlayReceiver;