]> git.basschouten.com Git - openhab-addons.git/blob
aad548ea7375053784c963608ee1d5e309d772de
[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.robonect.internal.config;
14
15 /**
16  * The {@link JobChannelConfig} class holds the channel configuration for the Job channel.
17  *
18  * @author Marco Meyer - Initial contribution
19  */
20 public class JobChannelConfig {
21
22     private String remoteStart;
23
24     private String afterMode;
25
26     private int duration;
27
28     public String getRemoteStart() {
29         return remoteStart;
30     }
31
32     public void setRemoteStart(String remoteStart) {
33         this.remoteStart = remoteStart;
34     }
35
36     public String getAfterMode() {
37         return afterMode;
38     }
39
40     public void setAfterMode(String afterMode) {
41         this.afterMode = afterMode;
42     }
43
44     public int getDuration() {
45         return duration;
46     }
47
48     public void setDuration(int duration) {
49         this.duration = duration;
50     }
51 }