]> git.basschouten.com Git - openhab-addons.git/blob
adddf4e5d6abba3fad4259364ffd28e60680e56f
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.digitalstrom.internal.lib.event.constants;
14
15 /**
16  * The {@link EventNames} contains all needed event names to subscribe at the digitalSTROM server.
17  *
18  * @author Michael Ochel
19  * @author Matthias Siegele
20  */
21 public class EventNames {
22
23     public static final String ZONE_SENSOR_VALUE = "zoneSensorValue";
24     public static final String HEATING_CONTROL_OPERATION_MODE = "heating-controller.operation-mode";
25     public static final String STATE_CHANGED = "stateChange";
26     public static final String CALL_SCENE = "callScene";
27     public static final String UNDO_SCENE = "undoScene";
28     public static final String DEVICE_SENSOR_VALUE = "deviceSensorValue";
29     public static final String DEVICE_BINARY_INPUT_EVENT = "deviceBinaryInputEvent";
30 }