01: /*
02: * Copyright 2005-2007 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package net.sf.dozer.util.mapping.vo.deepindex;
18:
19: public class HeadOfHouseHold {
20: private String firstName;
21: private String lastName;
22: private Integer salary;
23: private String petName;
24: private String petAge;
25: private String offSpringName;
26:
27: public String getOffSpringName() {
28: return offSpringName;
29: }
30:
31: public void setOffSpringName(String offSpringName) {
32: this .offSpringName = offSpringName;
33: }
34:
35: public String getPetAge() {
36: return petAge;
37: }
38:
39: public void setPetAge(String petAge) {
40: this .petAge = petAge;
41: }
42:
43: public String getPetName() {
44: return petName;
45: }
46:
47: public void setPetName(String petName) {
48: this .petName = petName;
49: }
50:
51: public String getFirstName() {
52: return firstName;
53: }
54:
55: public void setFirstName(String firstName) {
56: this .firstName = firstName;
57: }
58:
59: public String getLastName() {
60: return lastName;
61: }
62:
63: public void setLastName(String lastName) {
64: this .lastName = lastName;
65: }
66:
67: public Integer getSalary() {
68: return salary;
69: }
70:
71: public void setSalary(Integer salary) {
72: this.salary = salary;
73: }
74:
75: }
|