1 package inklings.jgatms.bean;
2
3 import java.util.List;
4
5 /***
6 * Value object for the Member entity.
7 */
8 public class Member {
9
10 private String firstName;
11 private String lastName;
12 private String gender;
13 private String address1;
14 private String address2;
15 private String city;
16 private State state;
17 private String zipCode;
18 private String homePhone;
19 private String workPhone;
20 private String mobilePhone;
21 private String preferredPhone;
22 private String emailAddress;
23 private String userName;
24 private String password;
25 private Long memberId;
26 private List skills;
27
28 /***
29 * Returns the value of firstName
30 */
31 public String getFirstName() {
32 return firstName;
33 }
34
35 /***
36 * Sets the value of firstName
37 */
38 public void setFirstName(String firstName) {
39 this.firstName = firstName;
40 }
41
42 /***
43 * Returns the value of lastName
44 */
45 public String getLastName() {
46 return lastName;
47 }
48
49 /***
50 * Sets the value of lastName
51 */
52 public void setLastName(String lastName) {
53 this.lastName = lastName;
54 }
55
56 /***
57 * Returns the value of gender
58 */
59 public String getGender() {
60 return gender;
61 }
62
63 /***
64 * Sets the value of gender
65 */
66 public void setGender(String gender) {
67 this.gender = gender;
68 }
69
70 /***
71 * Returns the value of address1
72 */
73 public String getAddress1() {
74 return address1;
75 }
76
77 /***
78 * Sets the value of address1
79 */
80 public void setAddress1(String address1) {
81 this.address1 = address1;
82 }
83
84 /***
85 * Returns the value of address2
86 */
87 public String getAddress2() {
88 return address2;
89 }
90
91 /***
92 * Sets the value of address2
93 */
94 public void setAddress2(String address2) {
95 this.address2 = address2;
96 }
97
98 /***
99 * Returns the value of city
100 */
101 public String getCity() {
102 return city;
103 }
104
105 /***
106 * Sets the value of city
107 */
108 public void setCity(String city) {
109 this.city = city;
110 }
111
112 /***
113 * Returns the value of state
114 */
115 public State getState() {
116 return state;
117 }
118
119 /***
120 * Sets the value of state
121 */
122 public void setState(State state) {
123 this.state = state;
124 }
125
126 /***
127 * Returns the value of zipCode
128 */
129 public String getZipCode() {
130 return zipCode;
131 }
132
133 /***
134 * Sets the value of zipCode
135 */
136 public void setZipCode(String zipCode) {
137 this.zipCode = zipCode;
138 }
139
140 /***
141 * Returns the value of homePhone
142 */
143 public String getHomePhone() {
144 return homePhone;
145 }
146
147 /***
148 * Sets the value of homePhone
149 */
150 public void setHomePhone(String homePhone) {
151 this.homePhone = homePhone;
152 }
153
154 /***
155 * Returns the value of workPhone
156 */
157 public String getWorkPhone() {
158 return workPhone;
159 }
160
161 /***
162 * Sets the value of workPhone
163 */
164 public void setWorkPhone(String workPhone) {
165 this.workPhone = workPhone;
166 }
167
168 /***
169 * Returns the value of mobilePhone
170 */
171 public String getMobilePhone() {
172 return mobilePhone;
173 }
174
175 /***
176 * Sets the value of mobilePhone
177 */
178 public void setMobilePhone(String mobilePhone) {
179 this.mobilePhone = mobilePhone;
180 }
181
182 /***
183 * Returns the value of preferredPhone
184 */
185 public String getPreferredPhone() {
186 return preferredPhone;
187 }
188
189 /***
190 * Sets the value of preferredPhone
191 */
192 public void setPreferredPhone(String preferredPhone) {
193 this.preferredPhone = preferredPhone;
194 }
195
196 /***
197 * Returns the value of emailAddress
198 */
199 public String getEmailAddress() {
200 return emailAddress;
201 }
202
203 /***
204 * Sets the value of emailAddress
205 */
206 public void setEmailAddress(String emailAddress) {
207 this.emailAddress = emailAddress;
208 }
209
210 /***
211 * Returns the value of userName
212 */
213 public String getUserName() {
214 return userName;
215 }
216
217 /***
218 * Sets the value of userName
219 */
220 public void setUserName(String userName) {
221 this.userName = userName;
222 }
223
224 /***
225 * Returns the value of password
226 */
227 public String getPassword() {
228 return password;
229 }
230
231 /***
232 * Sets the value of password
233 */
234 public void setPassword(String password) {
235 this.password = password;
236 }
237
238 /***
239 * Returns the value of memberId
240 */
241 public Long getMemberId() {
242 return memberId;
243 }
244
245 /***
246 * Sets the value of memberId
247 */
248 public void setMemberId(Long memberId) {
249 this.memberId = memberId;
250 }
251
252 /***
253 * Returns the value of skills
254 */
255 public List getSkills() {
256 return skills;
257 }
258
259 /***
260 * Sets the value of skills
261 */
262 public void setSkills(List skills) {
263 this.skills = skills;
264 }
265
266 }
This page was automatically generated by Maven