Back to project page kluster-android.
The source code is released under:
Apache License
If you think the Android project kluster-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.cs446.kluster.models; /*from w w w. ja v a 2s. c o m*/ public class AuthUser extends User { private String mUserID; private String mToken; private String mTokenExpiry; public AuthUser(String userID, String token, String tokenExpiry, String userName, String userEmail, String firstName, String lastName) { super(userName, userEmail, firstName, lastName); mUserID=userID; mToken=token; mTokenExpiry=tokenExpiry; } public String getUserID() { return mUserID; } public String getToken() { return mToken; } public String getTokenExpiry() { return mTokenExpiry; } }