View Javadoc

1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
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  package org.kuali.rice.krad.datadictionary.validation;
17  
18  import java.util.Date;
19  import java.util.List;
20  
21  
22  /**
23   *
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public class Person {
27  	private String firstName;
28  	private String lastName;
29  	private String middleName;
30  	private String gender;
31  	private Date birthDate;
32  	private List<Address> addresses;
33  	/**
34  	 * @return the firstName
35  	 */
36  	public String getFirstName() {
37  		return this.firstName;
38  	}
39  	/**
40  	 * @param firstName the firstName to set
41  	 */
42  	public void setFirstName(String firstName) {
43  		this.firstName = firstName;
44  	}
45  	/**
46  	 * @return the lastName
47  	 */
48  	public String getLastName() {
49  		return this.lastName;
50  	}
51  	/**
52  	 * @param lastName the lastName to set
53  	 */
54  	public void setLastName(String lastName) {
55  		this.lastName = lastName;
56  	}
57  	/**
58  	 * @return the middleName
59  	 */
60  	public String getMiddleName() {
61  		return this.middleName;
62  	}
63  	/**
64  	 * @param middleName the middleName to set
65  	 */
66  	public void setMiddleName(String middleName) {
67  		this.middleName = middleName;
68  	}
69  	/**
70  	 * @return the gender
71  	 */
72  	public String getGender() {
73  		return this.gender;
74  	}
75  	/**
76  	 * @param gender the gender to set
77  	 */
78  	public void setGender(String gender) {
79  		this.gender = gender;
80  	}
81  	/**
82  	 * @return the birthDate
83  	 */
84  	public Date getBirthDate() {
85  		return this.birthDate;
86  	}
87  	/**
88  	 * @param birthDate the birthDate to set
89  	 */
90  	public void setBirthDate(Date birthDate) {
91  		this.birthDate = birthDate;
92  	}
93  	/**
94  	 * @return the addresses
95  	 */
96  	public List<Address> getAddresses() {
97  		return this.addresses;
98  	}
99  	/**
100 	 * @param addresses the addresses to set
101 	 */
102 	public void setAddresses(List<Address> addresses) {
103 		this.addresses = addresses;
104 	}
105 
106 }