]> git.basschouten.com Git - openhab-addons.git/blob
b815ae0efe69a726f9ce87bd021025df827a15c6
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.miele.internal.handler;
14
15 import org.openhab.core.thing.ChannelUID;
16 import org.openhab.core.thing.Thing;
17 import org.openhab.core.types.Command;
18
19 /**
20  * The {@link HobHandler} is responsible for handling commands,
21  * which are sent to one of the channels
22  *
23  * @author Karel Goderis - Initial contribution
24  * @author Kai Kreuzer - fixed handling of REFRESH commands
25  */
26 public class HobHandler extends MieleApplianceHandler<HobChannelSelector> {
27
28     public HobHandler(Thing thing) {
29         super(thing, HobChannelSelector.class, "Hob");
30     }
31
32     @Override
33     public void handleCommand(ChannelUID channelUID, Command command) {
34         super.handleCommand(channelUID, command);
35     }
36 }