]> git.basschouten.com Git - openhab-addons.git/blob
6f51a4d76f0240e737f03482dc29614a2644fa32
[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.buienradar.internal;
14
15 /**
16  * The {@link BuienradarConfiguration} class contains fields mapping thing configuration parameters.
17  *
18  * @author Edwin de Jong - Initial contribution
19  */
20 public class BuienradarConfiguration {
21
22     /**
23      * Location of the forecast from buienradar
24      */
25     public String location;
26
27     /**
28      * Refresh interval for retrieving results from buienradar.
29      */
30     public Integer refreshIntervalMinutes;
31
32     /**
33      * Number of retries to try to retrieve buienradar results.
34      */
35     public Integer retries;
36
37     /**
38      * Exponential backoff base value for retries in seconds. For example, when this is 2 seconds, will retry at 2, 4,
39      * 8, 16, 32, 64 seconds.
40      */
41     public Integer exponentialBackoffRetryBaseInSeconds;
42 }