update for changes

This commit is contained in:
bsamuels
2018-01-16 16:13:24 -06:00
parent 27dd8475e9
commit 18c47ee5e4
7 changed files with 37 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
package com.bwssystems.HABridge.plugins.http;
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;
}
}