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; // w w w . j a v a2 s . co m /** * Created by Vatsal on 11/2/2014. */ public class UserResponse { public int User_id; public String DisplayName; public String Email_id; public double radius; public double latitude; public double longitude; public boolean success; public UserResponse(int userId, String displayName, String emailId, double radius, double latitude, double longitude, boolean success){ this.User_id = userId; this.DisplayName = displayName; this.Email_id = emailId; this.radius = radius; this.latitude = latitude; this.longitude = longitude; this.success = success; } public String toString() { return "User ID: " + User_id + " Display Name: " + DisplayName + " Email ID: " + Email_id + " Radius: " + radius + " Latitude: " + latitude + " Longitude: " + longitude; } public String getDisplayName() { return DisplayName; } }