| | |
| | | /* |
| | | * To change this license header, choose License Headers in Project Properties. |
| | | * To change this template file, choose Tools | Templates |
| | | * and open the template in the editor. |
| | | */ |
| | | package de.uhilger.avdirektor.handler; |
| | | |
| | | import com.sun.net.httpserver.HttpExchange; |
| | |
| | | * |
| | | * @author ulrich |
| | | */ |
| | | public abstract class CmdHandler extends OMXPlayer implements HttpHandler { |
| | | public class CmdHandler extends OMXPlayer implements HttpHandler { |
| | | |
| | | private static final Logger logger = Logger.getLogger(CmdHandler.class.getName()); |
| | | |
| | | protected String cmd; |
| | | private String cmd; |
| | | |
| | | public abstract void setCmd(String cmd); |
| | | public CmdHandler(String cmd) { |
| | | this.cmd = cmd; |
| | | } |
| | | |
| | | public void setCmd(String cmd) { |
| | | this.cmd = cmd; |
| | | } |
| | | |
| | | public String getCmd(String cmd) { |
| | | return this.cmd; |
| | | } |
| | | |
| | | @Override |
| | | public void handle(HttpExchange t) throws IOException { |
| | |
| | | String antwort = this.kommando(cmd); |
| | | logger.log(Level.FINE, antwort); |
| | | |
| | | String response = getResponseString(map, "cmd", antwort); |
| | | String response = getResponseString(map, cmd, antwort); |
| | | t.sendResponseHeaders(200, response.length()); |
| | | OutputStream os = t.getResponseBody(); |
| | | os.write(response.getBytes()); |