Updated call for hue user create/addition call. Updated upnp response

variables.
This commit is contained in:
Admin
2015-08-20 16:49:12 -05:00
parent 8de39a8bee
commit 9dc8d8f8bc
4 changed files with 38 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
package com.bwssystems.HABridge.api;
public class UserCreateRequest {
private String devicetype;
private String username;
public String getDevicetype() {
return devicetype;
}
public void setDevicetype(String devicetype) {
this.devicetype = devicetype;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
}