This commit is contained in:
bsamuels
2018-01-16 16:14:11 -06:00
parent 18c47ee5e4
commit 27f77b9caa

View File

@@ -1,20 +0,0 @@
package com.bwssystems.fhem.test;
import com.bwssystems.HABridge.api.NameValue;
import com.bwssystems.HABridge.plugins.http.HTTPHandler;
public class HttpTestHandler extends HTTPHandler {
private String theData;
public String getTheData() {
return theData;
}
public void setTheData(String theData) {
this.theData = theData;
}
public String doHttpRequest(String url, String httpVerb, String contentType, String body, NameValue[] headers) {
return theData;
}
}