01: package org.theospi.portfolio.warehouse.model;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: * User: bbiltimier
06: * Date: Mar 15, 2007
07: * Time: 9:59:38 AM
08: * To change this template use File | Settings | File Templates.
09: */
10: public class UserBean {
11: String userId;
12:
13: String userEid;
14:
15: String email;
16:
17: String emailLc;
18:
19: String type;
20:
21: String firstName;
22:
23: String LastName;
24:
25: public UserBean(String userId, String userEid, String email,
26: String emailLc, String firstName, String lastName,
27: String type) {
28: setUserId(userId);
29: setUserEid(userEid);
30: setEmail(email);
31: setEmailLc(emailLc);
32: setType(type);
33: setFirstName(firstName);
34: setLastName(lastName);
35: }
36:
37: public String getUserId() {
38: return userId;
39: }
40:
41: public void setUserId(String userId) {
42: this .userId = userId;
43: }
44:
45: public String getUserEid() {
46: return userEid;
47: }
48:
49: public void setUserEid(String userEid) {
50: this .userEid = userEid;
51: }
52:
53: public String getEmail() {
54: return email;
55: }
56:
57: public void setEmail(String email) {
58: this .email = email;
59: }
60:
61: public String getEmailLc() {
62: return emailLc;
63: }
64:
65: public void setEmailLc(String emailLc) {
66: this .emailLc = emailLc;
67: }
68:
69: public String getType() {
70: return type;
71: }
72:
73: public void setType(String type) {
74: this .type = type;
75: }
76:
77: public String getFirstName() {
78: return firstName;
79: }
80:
81: public void setFirstName(String firstName) {
82: this .firstName = firstName;
83: }
84:
85: public String getLastName() {
86: return LastName;
87: }
88:
89: public void setLastName(String lastName) {
90: LastName = lastName;
91: }
92: }
|