| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.core.organization.assembly.data.server; |
| 17 | |
|
| 18 | |
|
| 19 | |
import org.kuali.student.core.organization.dto.OrgOrgRelationInfo; |
| 20 | |
|
| 21 | 0 | public class OrgOrgRelationInfoData { |
| 22 | |
|
| 23 | 0 | public enum ModificationState { |
| 24 | 0 | CREATED, |
| 25 | 0 | UPDATED, |
| 26 | 0 | DELETED |
| 27 | |
} |
| 28 | |
private OrgOrgRelationInfo orgOrgRelationInfo; |
| 29 | |
|
| 30 | |
private ModificationState modificationState; |
| 31 | |
|
| 32 | |
public OrgOrgRelationInfo getOrgOrgRelationInfo() { |
| 33 | 0 | return orgOrgRelationInfo; |
| 34 | |
} |
| 35 | |
public void setOrgOrgRelationInfo(OrgOrgRelationInfo orgOrgRelationInfo) { |
| 36 | 0 | this.orgOrgRelationInfo = orgOrgRelationInfo; |
| 37 | 0 | } |
| 38 | |
|
| 39 | |
public ModificationState getModificationState() { |
| 40 | 0 | return modificationState; |
| 41 | |
} |
| 42 | |
public void setModificationState(ModificationState modificationState) { |
| 43 | 0 | this.modificationState = modificationState; |
| 44 | 0 | } |
| 45 | |
} |