| 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.AsyncCallback; |
| 8 | |
|
| 9 | |
public interface DependencyAnalysisRpcServiceAsync { |
| 10 | |
|
| 11 | |
public void getRequirementComponentNL(String reqComponentId, AsyncCallback<String> callback); |
| 12 | |
|
| 13 | |
public void getRequirementComponentNL(List<String> reqComponentIds, AsyncCallback<List<String>> callback); |
| 14 | |
|
| 15 | |
public void getProgramRequirement(String reqId, AsyncCallback<ProgramRequirementInfo> callback); |
| 16 | |
} |