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.innogysmarthome.internal.client.entity.action;
16 * Defines the {@link ActionParams} data structure needed to pass parameters within an {@link Action} to the innogy
19 * @author Oliver Kuhl - Initial contribution
21 public class ActionParams {
23 private BooleanActionParam onState;
25 private BooleanActionParam value;
27 private DoubleActionParam pointTemperature;
29 private IntegerActionParam dimLevel;
31 private IntegerActionParam shutterLevel;
33 private StringActionParam operationMode;
35 private StringActionParam rampDirection;
40 public BooleanActionParam getOnState() {
45 * @param state the state to set
47 public void setOnState(BooleanActionParam state) {
54 public BooleanActionParam getValue() {
59 * @param state the state to set
61 public void setValue(BooleanActionParam state) {
66 * @return the pointTemperature
68 public DoubleActionParam getPointTemperature() {
69 return pointTemperature;
73 * @param pointTemperature the pointTemperature to set
75 public void setPointTemperature(DoubleActionParam pointTemperature) {
76 this.pointTemperature = pointTemperature;
80 * @return the dimLevel
82 public IntegerActionParam getDimLevel() {
87 * @param dimLevel the dimLevel to set
89 public void setDimLevel(IntegerActionParam dimLevel) {
90 this.dimLevel = dimLevel;
94 * @return the shutterLevel
96 public IntegerActionParam getShutterLevel() {
101 * @param shutterLevel the shutterLevel to set
103 public void setShutterLevel(IntegerActionParam shutterLevel) {
104 this.shutterLevel = shutterLevel;
108 * @return the operationMode
110 public StringActionParam getOperationMode() {
111 return operationMode;
115 * @param operationMode the operationMode to set
117 public void setOperationMode(StringActionParam operationMode) {
118 this.operationMode = operationMode;
122 * @return the rampDirection
124 public StringActionParam getRampDirection() {
125 return rampDirection;
129 * @param rampDirection the rampDirection to set
131 public void setRampDirection(StringActionParam rampDirection) {
132 this.rampDirection = rampDirection;