Back to project page HotSpot_Android.
The source code is released under:
GNU General Public License
If you think the Android project HotSpot_Android 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.ticknardif.hotspot.RESTresponses; // ww w . j ava 2 s . c o m /** * Created by Vatsal on 11/8/2014. */ public class GCMResponse { boolean success; String reg_id; int user_id; public GCMResponse(boolean success, String reg_id, int user_id) { this.success = success; this.reg_id = reg_id; this.user_id = user_id; } @Override public String toString() { return "GCMResponse{" + "success=" + success + ", reg_id='" + reg_id + '\'' + ", user_id=" + user_id + '}'; } }