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.buienradar.internal;
16 * The {@link BuienradarConfiguration} class contains fields mapping thing configuration parameters.
18 * @author Edwin de Jong - Initial contribution
20 public class BuienradarConfiguration {
23 * Location of the forecast from buienradar
25 public String location;
28 * Refresh interval for retrieving results from buienradar.
30 public Integer refreshIntervalMinutes;
33 * Number of retries to try to retrieve buienradar results.
35 public Integer retries;
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.
41 public Integer exponentialBackoffRetryBaseInSeconds;