001 /** 002 * Copyright 2005-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.sampleu.demo.kitchensink; 017 018 import java.io.Serializable; 019 import java.util.Date; 020 021 public class TrainingApplicationPreviousEducation { 022 023 private static final long serialVersionUID = -445789083217233246L; 024 private String university; 025 private String college; 026 private String course; 027 private Date completionDate; 028 029 public String getUniversity() { 030 return university; 031 } 032 033 public void setUniversity(String university) { 034 this.university = university; 035 } 036 037 public String getCollege() { 038 return college; 039 } 040 041 public void setCollege(String college) { 042 this.college = college; 043 } 044 045 public String getCourse() { 046 return course; 047 } 048 049 public void setCourse(String course) { 050 this.course = course; 051 } 052 053 public Date getCompletionDate() { 054 return completionDate; 055 } 056 057 public void setCompletionDate(Date completionDate) { 058 this.completionDate = completionDate; 059 } 060 }