mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 16:41:53 +00:00
Added Requester logic filtering. Added logic for count and delay in
items and buttons.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user