]> git.basschouten.com Git - openhab-addons.git/blob
f5f7dfdadec32bcc95553322f5a3dbcfd8baf8a9
[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.shelly.internal.handler;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jetty.client.HttpClient;
17 import org.openhab.binding.shelly.internal.api1.Shelly1CoapServer;
18 import org.openhab.binding.shelly.internal.config.ShellyBindingConfiguration;
19 import org.openhab.binding.shelly.internal.provider.ShellyTranslationProvider;
20 import org.openhab.core.thing.Thing;
21
22 /**
23  * The {@link ShellyProtectedHandler} implements a dummy handler for password protected devices.
24  *
25  * @author Markus Michels - Initial contribution
26  */
27 @NonNullByDefault
28 public class ShellyProtectedHandler extends ShellyBaseHandler {
29     /**
30      * Constructor
31      *
32      * @param thing The thing passed by the HandlerFactory
33      * @param translationProvider
34      * @param bindingConfig configuration of the binding
35      * @param thingTable
36      * @param coapService coap server instance
37      * @param httpClient to connect to the openHAB HTTP API
38      */
39     public ShellyProtectedHandler(final Thing thing, final ShellyTranslationProvider translationProvider,
40             final ShellyBindingConfiguration bindingConfig, ShellyThingTable thingTable,
41             final Shelly1CoapServer coapService, final HttpClient httpClient) {
42         super(thing, translationProvider, bindingConfig, thingTable, coapService, httpClient);
43     }
44
45     @Override
46     public void initialize() {
47         super.initialize();
48     }
49 }