mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
package com.bwssystems.HABridge.plugins.hal;
|
|
|
|
public class HalDevice {
|
|
private String haldevicetype;
|
|
private String haldevicename;
|
|
private String haladdress;
|
|
private String halname;
|
|
private Boolean secure;
|
|
private DeviceElements buttons;
|
|
public String getHaldevicetype() {
|
|
return haldevicetype;
|
|
}
|
|
public void setHaldevicetype(String haldevicetype) {
|
|
this.haldevicetype = haldevicetype;
|
|
}
|
|
public String getHaldevicename() {
|
|
return haldevicename;
|
|
}
|
|
public void setHaldevicename(String haldevicename) {
|
|
this.haldevicename = haldevicename;
|
|
}
|
|
public String getHaladdress() {
|
|
return haladdress;
|
|
}
|
|
public void setHaladdress(String haladdress) {
|
|
this.haladdress = haladdress;
|
|
}
|
|
public String getHalname() {
|
|
return halname;
|
|
}
|
|
public void setHalname(String halname) {
|
|
this.halname = halname;
|
|
}
|
|
public Boolean getSecure() {
|
|
return secure;
|
|
}
|
|
public void setSecure(Boolean secure) {
|
|
this.secure = secure;
|
|
}
|
|
public DeviceElements getButtons() {
|
|
return buttons;
|
|
}
|
|
public void setButtons(DeviceElements buttons) {
|
|
this.buttons = buttons;
|
|
}
|
|
}
|