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.robonect.internal.config;
16 * The {@link JobChannelConfig} class holds the channel configuration for the Job channel.
18 * @author Marco Meyer - Initial contribution
20 public class JobChannelConfig {
22 private String remoteStart;
24 private String afterMode;
28 public String getRemoteStart() {
32 public void setRemoteStart(String remoteStart) {
33 this.remoteStart = remoteStart;
36 public String getAfterMode() {
40 public void setAfterMode(String afterMode) {
41 this.afterMode = afterMode;
44 public int getDuration() {
48 public void setDuration(int duration) {
49 this.duration = duration;