mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 16:41:53 +00:00
Continue on domoticz impl
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.bwssystems.HABridge.plugins.domoticz;
|
||||
|
||||
public class DomoticzDevice {
|
||||
private String Domoticzdevicetype;
|
||||
private String Domoticzdevicename;
|
||||
private String Domoticzaddress;
|
||||
private String Domoticzname;
|
||||
public String getDomoticzdevicetype() {
|
||||
return Domoticzdevicetype;
|
||||
}
|
||||
public void setDomoticzdevicetype(String Domoticzdevicetype) {
|
||||
this.Domoticzdevicetype = Domoticzdevicetype;
|
||||
}
|
||||
public String getDomoticzdevicename() {
|
||||
return Domoticzdevicename;
|
||||
}
|
||||
public void setDomoticzdevicename(String Domoticzdevicename) {
|
||||
this.Domoticzdevicename = Domoticzdevicename;
|
||||
}
|
||||
public String getDomoticzaddress() {
|
||||
return Domoticzaddress;
|
||||
}
|
||||
public void setDomoticzaddress(String Domoticzaddress) {
|
||||
this.Domoticzaddress = Domoticzaddress;
|
||||
}
|
||||
public String getDomoticzname() {
|
||||
return Domoticzname;
|
||||
}
|
||||
public void setDomoticzname(String Domoticzname) {
|
||||
this.Domoticzname = Domoticzname;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user