]> git.basschouten.com Git - openhab-addons.git/blob
98e4a367ffc6bbef4c59e3b85ad5f49123dbfb6f
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.ojelectronics.internal.config;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The configuration for {@link org.openhab.binding.ojelectronics.internal.OJElectronicsCloudHandler}
19  *
20  * @author Christian Kittel - Initial contribution
21  */
22 @NonNullByDefault
23 public class OJElectronicsBridgeConfiguration {
24
25     /**
26      * Password
27      */
28     public String password = "";
29
30     /**
31      * Customer-ID
32      */
33     public int customerId = 1;
34
35     /**
36      * User Name
37      */
38     public String userName = "";
39
40     /**
41      * Url for API
42      */
43     public String apiUrl = "https://OWD5-OJ001-App.ojelectronics.com/api";
44
45     /**
46      * API-Key
47      */
48     public String apiKey = "";
49
50     /**
51      * Software Version
52      */
53     public int softwareVersion = 1060;
54
55     /**
56      * Refresh-Delay
57      */
58     public long refreshDelayInSeconds = 30;
59 }