mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 00:10:20 +00:00
40 lines
821 B
Java
40 lines
821 B
Java
package com.bwssystems.HABridge.plugins.mqtt;
|
|
|
|
public class MQTTMessage {
|
|
private String clientId;
|
|
private String topic;
|
|
private String message;
|
|
private Integer delay;
|
|
private Integer count;
|
|
public String getClientId() {
|
|
return clientId;
|
|
}
|
|
public void setClientId(String clientId) {
|
|
this.clientId = clientId;
|
|
}
|
|
public String getTopic() {
|
|
return topic;
|
|
}
|
|
public void setTopic(String topic) {
|
|
this.topic = topic;
|
|
}
|
|
public String getMessage() {
|
|
return message;
|
|
}
|
|
public void setMessage(String message) {
|
|
this.message = message;
|
|
}
|
|
public Integer getDelay() {
|
|
return delay;
|
|
}
|
|
public void setDelay(Integer delay) {
|
|
this.delay = delay;
|
|
}
|
|
public Integer getCount() {
|
|
return count;
|
|
}
|
|
public void setCount(Integer count) {
|
|
this.count = count;
|
|
}
|
|
}
|