]> git.basschouten.com Git - openhab-addons.git/blob
1f5f2f7b088b61ccb1bed3daca0f0b39a6d03a7c
[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.homematic.internal.communicator;
14
15 import java.io.IOException;
16 import java.util.Collection;
17
18 import org.eclipse.jetty.client.HttpClient;
19 import org.openhab.binding.homematic.internal.common.HomematicConfig;
20 import org.openhab.binding.homematic.internal.model.HmChannel;
21 import org.openhab.binding.homematic.internal.model.HmDatapoint;
22 import org.openhab.binding.homematic.internal.model.HmDevice;
23
24 /**
25  * Default HomematicGateway implementation for RF and HS485 daemons.
26  *
27  * @author Gerhard Riegler - Initial contribution
28  */
29 public class DefaultGateway extends AbstractHomematicGateway {
30
31     protected DefaultGateway(String id, HomematicConfig config, HomematicGatewayAdapter gatewayAdapter,
32             HttpClient httpClient) {
33         super(id, config, gatewayAdapter, httpClient);
34     }
35
36     @Override
37     protected void loadVariables(HmChannel channel) throws IOException {
38         // not supported
39     }
40
41     @Override
42     protected void loadScripts(HmChannel channel) throws IOException {
43         // not supported
44     }
45
46     @Override
47     protected void setVariable(HmDatapoint dp, Object value) throws IOException {
48         // not supported
49     }
50
51     @Override
52     protected void executeScript(HmDatapoint dp) throws IOException {
53         // not supported
54     }
55
56     @Override
57     protected void loadDeviceNames(Collection<HmDevice> devices) throws IOException {
58         // not supported
59     }
60 }