]> git.basschouten.com Git - openhab-addons.git/blob
7e9ccf770a240b63101b396881f5ff36a24d1f2e
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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  * Copyright (c) 2014-2019 by the respective copyright holders.
14  * All rights reserved. This program and the accompanying materials
15  * are made available under the terms of the Eclipse Public License v1.0
16  * which accompanies this distribution, and is available at
17  * http://www.eclipse.org/legal/epl-v10.html
18  */
19 package org.openhab.binding.souliss.internal.handler;
20
21 import org.eclipse.jdt.annotation.NonNullByDefault;
22
23 /**
24  * Result callback interface.
25  *
26  * @author Tonino Fazio - Initial contribution
27  * @author Luca Calcaterra - Refactor for OH3
28  */
29 @NonNullByDefault
30 public interface TypicalCommonMethods {
31     void setRawState(byte rawState);
32
33     byte getRawState();
34
35     byte getExpectedRawState(byte bCommand);
36 }