Back to project page OpenHueSdk.
The source code is released under:
Apache License
If you think the Android project OpenHueSdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.t3hh4xx0r.openhuesdk.sdk.objects; /*from w ww . ja va 2 s . c o m*/ public class RegistrationRequest { public String devicetype; public String username; public RegistrationRequest(String devicetype, String username) { this.devicetype = devicetype; this.username = username; } }