1 /**
2 * Copyright 2005-2012 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 edu.sampleu.demo.kitchensink;
17
18 /**
19 * Created with IntelliJ IDEA.
20 * User: Brian
21 * Date: 10/3/12
22 * Time: 10:11 AM
23 * To change this template use File | Settings | File Templates.
24 */
25 public class TrainingApplicationReference {
26 private static final long serialVersionUID = -7525378097732916410L;
27 private String name;
28 private String phone;
29 private String address;
30 private String relationship;
31
32 public String getName() {
33 return name;
34 }
35
36 public void setName(String name) {
37 this.name = name;
38 }
39
40 public String getPhone() {
41 return phone;
42 }
43
44 public void setPhone(String phone) {
45 this.phone = phone;
46 }
47
48 public String getAddress() {
49 return address;
50 }
51
52 public void setAddress(String address) {
53 this.address = address;
54 }
55
56 public String getRelationship() {
57 return relationship;
58 }
59
60 public void setRelationship(String relationship) {
61 this.relationship = relationship;
62 }
63 }