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.classes;
16 * The {@link AvailableServices} is responsible for listing all available services.
18 * @author Patrik Wimnell - Initial contribution
20 public class AvailableServices {
22 private String houseCleaning;
23 private String spotCleaning;
24 private String manualCleaning;
25 private String easyConnect;
26 private String schedule;
27 private String generalInfo;
29 public String getGeneralInfo() {
33 public void setGeneralInfo(String generalInfo) {
34 this.generalInfo = generalInfo;
37 public String getHouseCleaning() {
41 public void setHouseCleaning(String houseCleaning) {
42 this.houseCleaning = houseCleaning;
45 public String getSpotCleaning() {
49 public void setSpotCleaning(String spotCleaning) {
50 this.spotCleaning = spotCleaning;
53 public String getManualCleaning() {
54 return manualCleaning;
57 public void setManualCleaning(String manualCleaning) {
58 this.manualCleaning = manualCleaning;
61 public String getEasyConnect() {
65 public void setEasyConnect(String easyConnect) {
66 this.easyConnect = easyConnect;
69 public String getSchedule() {
73 public void setSchedule(String schedule) {
74 this.schedule = schedule;