]> git.basschouten.com Git - openhab-addons.git/blob
0244c0801550b502fe997ca14e865617d92f3e34
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 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.fsinternetradio.internal.radio;
14
15 /**
16  * Internal constants for the frontier silicon radio.
17  *
18  * @author Markus Rathgeb - Moved the constants to separate class
19  */
20 public class FrontierSiliconRadioConstants {
21
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";
34
35     /** URL path, must begin with a slash (/) */
36     public static final String CONNECTION_PATH = "/fsapi";
37
38     private FrontierSiliconRadioConstants() {
39     }
40 }