Skip to content

Instantly share code, notes, and snippets.

@michaelneale
Created February 18, 2011 05:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelneale/833307 to your computer and use it in GitHub Desktop.
Save michaelneale/833307 to your computer and use it in GitHub Desktop.
import java.io.Serializable; public class UserDetailsBean implements Serializable{
private int userId;
private String fisrtName = null;
private String lastName = null;
private String emailId = null;
private String password = null;
private String gender = null;
private String street = null;
private String city = null;
private String state = null;
private String zipCode = null;
private String country = null;
private String phone1 = null;
private String phone2 = null;
private String regDate = null;
private String collegeName = null;
private int userType;
private int isActive;
private int userEntry;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment