1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  package edu.sampleu.demo.kitchensink;
17  
18  import java.io.Serializable;
19  import java.util.Date;
20  
21  public class TrainingApplicationPreviousEducation {
22  
23      private static final long serialVersionUID = -445789083217233246L;
24      private String university;
25      private String college;
26      private String course;
27      private Date completionDate;
28  
29      public String getUniversity() {
30          return university;
31      }
32  
33      public void setUniversity(String university) {
34          this.university = university;
35      }
36  
37      public String getCollege() {
38          return college;
39      }
40  
41      public void setCollege(String college) {
42          this.college = college;
43      }
44  
45      public String getCourse() {
46          return course;
47      }
48  
49      public void setCourse(String course) {
50          this.course = course;
51      }
52  
53      public Date getCompletionDate() {
54          return completionDate;
55      }
56  
57      public void setCompletionDate(Date completionDate) {
58          this.completionDate = completionDate;
59      }
60  }