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; /*from w w w. ja v a 2 s. com*/ public class UpdateLocationResponse { public int userId; public double longitude; public double latitude; public boolean success; public UpdateLocationResponse(int userId, double longitude, double latitude, boolean success) { this.userId = userId; this.longitude = longitude; this.latitude = latitude; this.success = success; } @Override public String toString() { return "UpdateLocationResponse{" + "userId=" + userId + ", longitude=" + longitude + ", latitude=" + latitude + ", success=" + success + '}'; } }