]> git.basschouten.com Git - openhab-addons.git/blob
2579d158238bb94bba8924d812e20d000bd66b03
[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.neato.internal.config;
14
15 /**
16  * Config class for a Neato Robot
17  *
18  * @author Jeff Lauterbach - Initial Contribution
19  *
20  */
21 public class NeatoRobotConfig {
22
23     private int refresh;
24     private String secret;
25     private String serial;
26
27     public int getRefresh() {
28         return refresh;
29     }
30
31     public void setRefresh(int refresh) {
32         this.refresh = refresh;
33     }
34
35     public String getSecret() {
36         return secret;
37     }
38
39     public void setSecret(String secret) {
40         this.secret = secret;
41     }
42
43     public String getSerial() {
44         return serial;
45     }
46
47     public void setSerial(String serial) {
48         this.serial = serial;
49     }
50
51     @Override
52     public String toString() {
53         return "NeatoRobotConfig [refresh=" + refresh + ", secret=" + secret + ", serial=" + serial + "]";
54     }
55 }