View Javadoc

1   /**
2    * Copyright 2005-2013 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  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  }