]> git.basschouten.com Git - openhab-addons.git/blob
d2a1b0bbb9d5636cbab8180de74bafa4e00e2778
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.freebox.internal.config;
14
15 /**
16  * The {@link FreeboxServerConfiguration} is responsible for holding
17  * configuration informations needed to access/poll the freebox server
18  *
19  * @author GaĆ«l L'hopital - Initial contribution
20  * @author Laurent Garnier - add discovery settings
21  */
22 public class FreeboxServerConfiguration {
23
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";
32
33     public String fqdn;
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;
41 }