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.neato.internal.config;
16 * Config class for a Neato Robot
18 * @author Jeff Lauterbach - Initial Contribution
21 public class NeatoRobotConfig {
24 private String secret;
25 private String serial;
27 public int getRefresh() {
31 public void setRefresh(int refresh) {
32 this.refresh = refresh;
35 public String getSecret() {
39 public void setSecret(String secret) {
43 public String getSerial() {
47 public void setSerial(String serial) {
52 public String toString() {
53 return "NeatoRobotConfig [refresh=" + refresh + ", secret=" + secret + ", serial=" + serial + "]";