1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.demo.kitchensink;
17
18
19
20
21
22
23
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 }