2 * Copyright (c) 2010-2021 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.lutron.internal.radiora.config;
15 import java.math.BigDecimal;
18 * Configuration class for Dimmer type
20 * @author Jeff Lauterbach - Initial contribution
23 public class DimmerConfig {
24 private int zoneNumber;
25 private BigDecimal fadeOutSec;
26 private BigDecimal fadeInSec;
28 public int getZoneNumber() {
32 public void setZoneNumber(int zoneNumber) {
33 this.zoneNumber = zoneNumber;
36 public BigDecimal getFadeOutSec() {
40 public void setFadeOutSec(BigDecimal fadeOutSec) {
41 this.fadeOutSec = fadeOutSec;
44 public BigDecimal getFadeInSec() {
48 public void setFadeInSec(BigDecimal fadeInSec) {
49 this.fadeInSec = fadeInSec;