]> git.basschouten.com Git - openhab-addons.git/blob
a4b26a151a1a61a5df16c8a59a01f91cb58d0e98
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.hydrawise.internal;
14
15 /**
16  * The {@link HydrawiseLocalConfiguration} class contains fields mapping thing configuration parameters.
17  *
18  * @author Dan Cunningham - Initial contribution
19  */
20 public class HydrawiseLocalConfiguration {
21
22     /**
23      * Host or IP for local controller
24      */
25     public String host;
26     /**
27      * User name (admin) for local controller
28      */
29     public String username;
30     /**
31      * Password for local controller
32      */
33     public String password;
34
35     /**
36      * refresh interval in seconds.
37      */
38     public int refresh;
39 }