updated upnp discovery calls to be more like the hue.

This commit is contained in:
Admin
2015-08-28 15:56:36 -05:00
parent d87f3bc541
commit eee0394f20
8 changed files with 359 additions and 9 deletions

View File

@@ -0,0 +1,52 @@
package com.bwssystems.HABridge.api.hue;
public class Swupdate
{
private String text;
private Boolean notify;
private Integer updatestate;
private String url;
public static Swupdate createSwupdate() {
Swupdate aSwupdate = new Swupdate();
aSwupdate.setNotify(false);
aSwupdate.setText("");
aSwupdate.setUpdatestate(0);
aSwupdate.setUrl("");
return aSwupdate;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public Boolean getNotify() {
return notify;
}
public void setNotify(Boolean notify) {
this.notify = notify;
}
public Integer getUpdatestate() {
return updatestate;
}
public void setUpdatestate(Integer updatestate) {
this.updatestate = updatestate;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}