| | |
| | | public static final String PL_API_STRG = "api/strg/"; |
| | | public static final String PL_CMD_ENDE = "ende"; |
| | | public static final String PL_CMD_STOP = "stop"; |
| | | public static final String PL_CMD_VOLDN = "voldn"; |
| | | public static final String PL_CMD_VOLUP = "volup"; |
| | | public static final String PL_CMD_PAUSE = "pause"; |
| | | public static final String PL_CMD_PLAYON = "weiter"; |
| | | public static final String PL_CMD_CALYPSO_STOP = "stop"; |
| | | public static final String PL_CMD_CALYPSO_VOL_INC = "vol-inc"; |
| | | public static final String PL_CMD_CALYPSO_VOL_DEC = "vol-dec"; |
| | | public static final String PL_CMD_CALYPSO_PAUSE = "pause"; |
| | | public static final String PL_CMD_CALYPSO_PLAYON = "playon"; |
| | | public static final String DEFAULT_HOST = "http://localhost:9090"; |
| | |
| | | } else if(elems[5].equalsIgnoreCase(PL_CMD_STOP)) { |
| | | spielt.remove(elems[4]); |
| | | response = kommandoSenden(fs, elems[4], PL_CMD_CALYPSO_STOP); |
| | | } else if(elems[5].equalsIgnoreCase(PL_CMD_VOLDN)) { |
| | | response = kommandoSenden(fs, elems[4], PL_CMD_CALYPSO_VOL_DEC); |
| | | } else if(elems[5].equalsIgnoreCase(PL_CMD_VOLUP)) { |
| | | response = kommandoSenden(fs, elems[4], PL_CMD_CALYPSO_VOL_INC); |
| | | } else if(elems[5].equalsIgnoreCase(PL_CMD_PAUSE)) { |
| | | response = kommandoSenden(fs, elems[4], PL_CMD_CALYPSO_PAUSE); |
| | | //} else if(elems[5].equalsIgnoreCase(PL_CMD_PLAYON)) { |