Added Requester logic filtering. Added logic for count and delay in

items and buttons.
This commit is contained in:
Admin
2016-11-11 14:38:37 -06:00
parent 407b0e0bd5
commit 7d39b79e05
12 changed files with 218 additions and 94 deletions

View File

@@ -2,6 +2,8 @@ package com.bwssystems.HABridge.api;
public class CallItem {
private String item;
private Integer count;
private Integer delay;
public String getItem() {
return item;
@@ -10,4 +12,20 @@ public class CallItem {
public void setItem(String anitem) {
item = anitem;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getDelay() {
return delay;
}
public void setDelay(Integer delay) {
this.delay = delay;
}
}