| 1 | |
package org.kuali.student.lum.lu.ui.dependency.client.service; |
| 2 | |
|
| 3 | |
import java.util.List; |
| 4 | |
|
| 5 | |
import org.kuali.student.lum.program.dto.ProgramRequirementInfo; |
| 6 | |
|
| 7 | |
import com.google.gwt.user.client.rpc.RemoteService; |
| 8 | |
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; |
| 9 | |
|
| 10 | |
@RemoteServiceRelativePath("rpcservices/DependencyAnalysisRpcService") |
| 11 | |
public interface DependencyAnalysisRpcService extends RemoteService{ |
| 12 | |
|
| 13 | |
public String getRequirementComponentNL(String reqComponentId) throws Exception; |
| 14 | |
|
| 15 | |
public List<String> getRequirementComponentNL(List<String> reqComponentIds) throws Exception; |
| 16 | |
|
| 17 | |
public ProgramRequirementInfo getProgramRequirement(String reqId) throws Exception; |
| 18 | |
|
| 19 | |
} |