Back to project page AndroidCouponAssistant.
The source code is released under:
MIT License
If you think the Android project AndroidCouponAssistant 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.corylucasjeffery.couponassistant; //w ww .j av a2 s. com public class UserInfo { private static String userName; private static String password; private static String firstName; private static String lastName; public UserInfo(String user, String pw, String first, String last) { this.userName = user; this.password = pw; this.firstName = first; this.lastName = last; } public String getUserName() { return userName; } public String getPass() { return password; } public String getFirstName() { return firstName; } public String getLastName() { return lastName; } }