]> git.basschouten.com Git - openhab-addons.git/blob
f87ba4759e6f00d854b8c0b1d92bc6a9623a7ad3
[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.classes;
14
15 /**
16  * The {@link AvailableServices} is responsible for listing all available services.
17  *
18  * @author Patrik Wimnell - Initial contribution
19  */
20 public class AvailableServices {
21
22     private String houseCleaning;
23     private String spotCleaning;
24     private String manualCleaning;
25     private String easyConnect;
26     private String schedule;
27     private String generalInfo;
28
29     public String getGeneralInfo() {
30         return generalInfo;
31     }
32
33     public void setGeneralInfo(String generalInfo) {
34         this.generalInfo = generalInfo;
35     }
36
37     public String getHouseCleaning() {
38         return houseCleaning;
39     }
40
41     public void setHouseCleaning(String houseCleaning) {
42         this.houseCleaning = houseCleaning;
43     }
44
45     public String getSpotCleaning() {
46         return spotCleaning;
47     }
48
49     public void setSpotCleaning(String spotCleaning) {
50         this.spotCleaning = spotCleaning;
51     }
52
53     public String getManualCleaning() {
54         return manualCleaning;
55     }
56
57     public void setManualCleaning(String manualCleaning) {
58         this.manualCleaning = manualCleaning;
59     }
60
61     public String getEasyConnect() {
62         return easyConnect;
63     }
64
65     public void setEasyConnect(String easyConnect) {
66         this.easyConnect = easyConnect;
67     }
68
69     public String getSchedule() {
70         return schedule;
71     }
72
73     public void setSchedule(String schedule) {
74         this.schedule = schedule;
75     }
76 }