2 * Copyright (c) 2010-2022 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.urtsi.internal.handler;
16 * The {@code RtsCommand} provides the available commands due to Somfy's RTS protocol.
18 * @author Oliver Libutzki - Initial contribution
21 public enum RtsCommand {
26 private String actionKey;
28 private RtsCommand(String actionKey) {
29 this.actionKey = actionKey;
33 * Returns the action key which is used for communicating with the URTSI II device.
35 * @return the action key
37 public String getActionKey() {