added multiple command execution. Added commandline Exec. NEeds testing

This commit is contained in:
Admin
2016-04-22 13:59:12 -05:00
parent b73a4cd666
commit 21e5dfb338
4 changed files with 86 additions and 34 deletions

View File

@@ -0,0 +1,13 @@
package com.bwssystems.HABridge.api;
public class CallItem {
private String Item;
public String getItem() {
return Item;
}
public void setItem(String item) {
Item = item;
}
}