]> git.basschouten.com Git - openhab-addons.git/blob
4acf553982067ed8624cef633b554ed9e74d730f
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.lutron.internal.radiora.config;
14
15 import java.math.BigDecimal;
16
17 /**
18  * Configuration class for Dimmer type
19  *
20  * @author Jeff Lauterbach - Initial contribution
21  *
22  */
23 public class DimmerConfig {
24     private int zoneNumber;
25     private BigDecimal fadeOutSec;
26     private BigDecimal fadeInSec;
27
28     public int getZoneNumber() {
29         return zoneNumber;
30     }
31
32     public void setZoneNumber(int zoneNumber) {
33         this.zoneNumber = zoneNumber;
34     }
35
36     public BigDecimal getFadeOutSec() {
37         return fadeOutSec;
38     }
39
40     public void setFadeOutSec(BigDecimal fadeOutSec) {
41         this.fadeOutSec = fadeOutSec;
42     }
43
44     public BigDecimal getFadeInSec() {
45         return fadeInSec;
46     }
47
48     public void setFadeInSec(BigDecimal fadeInSec) {
49         this.fadeInSec = fadeInSec;
50     }
51 }