1 package org.kuali.coeus.propdev.api.person;
2
3 import org.kuali.coeus.common.api.person.attr.DegreeTypeContract;
4
5 public interface ProposalPersonDegreeContract extends ProposalPersonLink {
6
7 Integer getDegreeSequenceNumber();
8
9 String getGraduationYear();
10
11 String getDegree();
12
13 String getFieldOfStudy();
14
15 String getSpecialization();
16
17 String getSchool();
18
19 String getSchoolIdCode();
20
21 String getSchoolId();
22
23 DegreeTypeContract getDegreeType();
24 }