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 AvailableCommands} is responsible for listing all available commands.
18 * @author Patrik Wimnell - Initial contribution
20 public class AvailableCommands {
22 private Boolean start;
24 private Boolean pause;
25 private Boolean resume;
26 private Boolean goToBase;
28 public Boolean getStart() {
32 public void setStart(Boolean start) {
36 public Boolean getStop() {
40 public void setStop(Boolean stop) {
44 public Boolean getPause() {
48 public void setPause(Boolean pause) {
52 public Boolean getResume() {
56 public void setResume(Boolean resume) {
60 public Boolean getGoToBase() {
64 public void setGoToBase(Boolean goToBase) {
65 this.goToBase = goToBase;