mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
33 lines
781 B
Java
33 lines
781 B
Java
package com.bwssystems.hal;
|
|
|
|
public class HalDevice {
|
|
private String haldevicetype;
|
|
private String haldevicename;
|
|
private String haladdress;
|
|
private String halname;
|
|
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;
|
|
}
|
|
}
|