1 | |
package org.kuali.student.enrollment.lpr.service.impl; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.List; |
5 | |
|
6 | |
import org.kuali.student.common.dto.ContextInfo; |
7 | |
import org.kuali.student.enrollment.lpr.dto.LuiPersonRelationStateInfo; |
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | 0 | public class LuiPersonRelationServiceImplPostProcessing { |
13 | |
|
14 | |
|
15 | |
public List<LuiPersonRelationStateInfo> findLuiPersonRelationStates(List<LuiPersonRelationStateInfo> lprInfo, ContextInfo context) { |
16 | 0 | LuiPersonRelationStateInfo lprInfoLocal = lprInfo.get(0); |
17 | |
|
18 | 0 | List <LuiPersonRelationStateInfo> returnList = new ArrayList<LuiPersonRelationStateInfo>(); |
19 | |
|
20 | 0 | return returnList; |
21 | |
} |
22 | |
|
23 | |
|
24 | |
} |