Updating for requester filter and to be able to have multiple calls for

any type of device.
This commit is contained in:
Admin
2016-11-21 16:45:01 -06:00
parent a3f5b47260
commit dcc4041d7d
4 changed files with 1317 additions and 1206 deletions

View File

@@ -1,10 +1,28 @@
package com.bwssystems.HABridge.api;
public class CallItem {
private String type;
private String requesterAddress;
private String item;
private Integer count;
private Integer delay;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getRequesterAddress() {
return requesterAddress;
}
public void setRequesterAddress(String requesterAddress) {
this.requesterAddress = requesterAddress;
}
public String getItem() {
return item;
}