mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 00:20:26 +00:00
19 lines
399 B
Java
19 lines
399 B
Java
package com.bwssystems.hue;
|
|
|
|
public class HueDeviceIdentifier {
|
|
private String ipAddress;
|
|
private String deviceId;
|
|
public String getIpAddress() {
|
|
return ipAddress;
|
|
}
|
|
public void setIpAddress(String ipAddress) {
|
|
this.ipAddress = ipAddress;
|
|
}
|
|
public String getDeviceId() {
|
|
return deviceId;
|
|
}
|
|
public void setDeviceId(String deviceId) {
|
|
this.deviceId = deviceId;
|
|
}
|
|
}
|