| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.lum.lu.ui.course.client.service; |
| 17 | |
|
| 18 | |
import java.util.Date; |
| 19 | |
import java.util.List; |
| 20 | |
import java.util.Map; |
| 21 | |
|
| 22 | |
import org.kuali.student.common.dto.StatusInfo; |
| 23 | |
import org.kuali.student.common.ui.client.service.BaseDataOrchestrationRpcServiceAsync; |
| 24 | |
import org.kuali.student.common.ui.client.service.DataSaveResult; |
| 25 | |
import org.kuali.student.core.statement.dto.StatementTreeViewInfo; |
| 26 | |
import org.kuali.student.lum.lu.ui.course.client.requirements.CourseRequirementsDataModel; |
| 27 | |
|
| 28 | |
import com.google.gwt.user.client.rpc.AsyncCallback; |
| 29 | |
|
| 30 | |
public interface CourseRpcServiceAsync extends BaseDataOrchestrationRpcServiceAsync{ |
| 31 | |
public void getCourseStatements(String courseId, String nlUsageTypeKey, String language, AsyncCallback<List<StatementTreeViewInfo>> callback); |
| 32 | |
public void storeCourseStatements(String courseId, String courseState, Map<Integer, CourseRequirementsDataModel.requirementState> states, |
| 33 | |
Map<Integer, StatementTreeViewInfo> rules, AsyncCallback<Map<Integer, StatementTreeViewInfo>> callback); |
| 34 | |
public void createCourseStatement(String courseId, String courseState, StatementTreeViewInfo statementTreeViewInfo, AsyncCallback<StatementTreeViewInfo> callback); |
| 35 | |
public void deleteCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo, AsyncCallback<StatusInfo> callback); |
| 36 | |
public void updateCourseStatement(String courseId, String courseState, StatementTreeViewInfo statementTreeViewInfo, AsyncCallback<StatementTreeViewInfo> callback); |
| 37 | |
|
| 38 | |
public void changeState(String courseId, String newState, AsyncCallback<StatusInfo> callback); |
| 39 | |
public void changeState(String courseId, String newState, Date currentVersionStart, AsyncCallback<StatusInfo> callback); |
| 40 | |
|
| 41 | |
public void createCopyCourse(String originalCluId, AsyncCallback<DataSaveResult> asyncCallback); |
| 42 | |
public void createCopyCourseProposal(String originalProposalId, AsyncCallback<DataSaveResult> asyncCallback); |
| 43 | |
} |