2 * Copyright (c) 2010-2024 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.fsinternetradio.internal.radio;
16 * Internal constants for the frontier silicon radio.
18 * @author Markus Rathgeb - Moved the constants to separate class
20 public class FrontierSiliconRadioConstants {
22 public static final String REQUEST_SET_POWER = "SET/netRemote.sys.power";
23 public static final String REQUEST_GET_POWER = "GET/netRemote.sys.power";
24 public static final String REQUEST_GET_MODE = "GET/netRemote.sys.mode";
25 public static final String REQUEST_SET_MODE = "SET/netRemote.sys.mode";
26 public static final String REQUEST_SET_VOLUME = "SET/netRemote.sys.audio.volume";
27 public static final String REQUEST_GET_VOLUME = "GET/netRemote.sys.audio.volume";
28 public static final String REQUEST_SET_MUTE = "SET/netRemote.sys.audio.mute";
29 public static final String REQUEST_GET_MUTE = "GET/netRemote.sys.audio.mute";
30 public static final String REQUEST_SET_PRESET = "SET/netRemote.nav.state";
31 public static final String REQUEST_SET_PRESET_ACTION = "SET/netRemote.nav.action.selectPreset";
32 public static final String REQUEST_GET_PLAY_INFO_TEXT = "GET/netRemote.play.info.text";
33 public static final String REQUEST_GET_PLAY_INFO_NAME = "GET/netRemote.play.info.name";
35 /** URL path, must begin with a slash (/) */
36 public static final String CONNECTION_PATH = "/fsapi";
38 private FrontierSiliconRadioConstants() {