]> git.basschouten.com Git - openhab-addons.git/blob
451a3ec116ab088c3d90c3b84e2e0e34ebc0d0d9
[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 package org.openhab.binding.bluetooth.daikinmadoka.internal.model.commands;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * Command responses that the listener must implement
19  *
20  * @author Benjamin Lafois - Initial contribution
21  *
22  */
23 @NonNullByDefault
24 public interface ResponseListener {
25
26     public void receivedResponse(byte[] bytes);
27
28     public void receivedResponse(GetVersionCommand command);
29
30     public void receivedResponse(GetFanspeedCommand command);
31
32     public void receivedResponse(GetOperationmodeCommand command);
33
34     public void receivedResponse(GetPowerstateCommand command);
35
36     public void receivedResponse(GetSetpointCommand command);
37
38     public void receivedResponse(GetIndoorOutoorTemperatures command);
39
40     public void receivedResponse(SetPowerstateCommand command);
41
42     public void receivedResponse(SetSetpointCommand command);
43
44     public void receivedResponse(SetOperationmodeCommand command);
45
46     public void receivedResponse(SetFanspeedCommand command);
47
48     public void receivedResponse(GetOperationHoursCommand command);
49
50     public void receivedResponse(GetEyeBrightnessCommand command);
51
52     public void receivedResponse(SetEyeBrightnessCommand command);
53
54     public void receivedResponse(GetCleanFilterIndicatorCommand command);
55 }