2 * Copyright (c) 2010-2020 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.miele.internal.handler;
15 import org.openhab.core.thing.ChannelUID;
16 import org.openhab.core.thing.Thing;
17 import org.openhab.core.types.Command;
20 * The {@link HobHandler} is responsible for handling commands,
21 * which are sent to one of the channels
23 * @author Karel Goderis - Initial contribution
24 * @author Kai Kreuzer - fixed handling of REFRESH commands
26 public class HobHandler extends MieleApplianceHandler<HobChannelSelector> {
28 public HobHandler(Thing thing) {
29 super(thing, HobChannelSelector.class, "Hob");
33 public void handleCommand(ChannelUID channelUID, Command command) {
34 super.handleCommand(channelUID, command);