]> git.basschouten.com Git - openhab-addons.git/blob
99ac98582e57af4ef3f866271de9449828b7a83e
[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 AvailableCommands} is responsible for listing all available commands.
17  *
18  * @author Patrik Wimnell - Initial contribution
19  */
20 public class AvailableCommands {
21
22     private Boolean start;
23     private Boolean stop;
24     private Boolean pause;
25     private Boolean resume;
26     private Boolean goToBase;
27
28     public Boolean getStart() {
29         return start;
30     }
31
32     public void setStart(Boolean start) {
33         this.start = start;
34     }
35
36     public Boolean getStop() {
37         return stop;
38     }
39
40     public void setStop(Boolean stop) {
41         this.stop = stop;
42     }
43
44     public Boolean getPause() {
45         return pause;
46     }
47
48     public void setPause(Boolean pause) {
49         this.pause = pause;
50     }
51
52     public Boolean getResume() {
53         return resume;
54     }
55
56     public void setResume(Boolean resume) {
57         this.resume = resume;
58     }
59
60     public Boolean getGoToBase() {
61         return goToBase;
62     }
63
64     public void setGoToBase(Boolean goToBase) {
65         this.goToBase = goToBase;
66     }
67 }