2 * Copyright (c) 2010-2023 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.heos.internal.handler;
15 import java.io.IOException;
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.eclipse.jdt.annotation.Nullable;
19 import org.openhab.binding.heos.internal.json.dto.HeosResponseObject;
20 import org.openhab.binding.heos.internal.resources.HeosEventListener;
21 import org.openhab.binding.heos.internal.resources.Telnet.ReadException;
22 import org.openhab.core.thing.ThingUID;
23 import org.openhab.core.types.Command;
24 import org.openhab.core.types.RefreshType;
26 import com.google.gson.JsonElement;
30 * The {@link HeosChannelHandlerRawCommand} handles the RawCommand channel command
31 * from the implementing thing.
33 * @author Johannes Einig - Initial contribution
36 public class HeosChannelHandlerRawCommand extends BaseHeosChannelHandler {
37 private final HeosEventListener eventListener;
39 public HeosChannelHandlerRawCommand(HeosEventListener eventListener, HeosBridgeHandler bridge) {
41 this.eventListener = eventListener;
45 public void handlePlayerCommand(Command command, String id, ThingUID uid) {
50 public void handleGroupCommand(Command command, @Nullable String id, ThingUID uid,
51 HeosGroupHandler heosGroupHandler) {
56 public void handleBridgeCommand(Command command, ThingUID uid) throws IOException, ReadException {
57 if (command instanceof RefreshType) {
60 HeosResponseObject<JsonElement> response = getApi().sendRawCommand(command.toString());
62 if (response.result) {
63 eventListener.playerStateChangeEvent(response);