| 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.ui.client.service.BaseDataOrchestrationRpcServiceAsync; | 
  | 23 |  |  import org.kuali.student.core.dto.StatusInfo; | 
  | 24 |  |  import org.kuali.student.core.statement.dto.StatementTreeViewInfo; | 
  | 25 |  |  import org.kuali.student.lum.lu.ui.course.client.requirements.CourseRequirementsDataModel; | 
  | 26 |  |   | 
  | 27 |  |  import com.google.gwt.user.client.rpc.AsyncCallback; | 
  | 28 |  |   | 
  | 29 |  |  public interface CourseRpcServiceAsync extends BaseDataOrchestrationRpcServiceAsync{ | 
  | 30 |  |      public void getCourseStatements(String courseId, String nlUsageTypeKey, String language, AsyncCallback<List<StatementTreeViewInfo>> callback); | 
  | 31 |  |      public void storeCourseStatements(String courseId, Map<Integer, CourseRequirementsDataModel.requirementState> states, | 
  | 32 |  |                                              Map<Integer, StatementTreeViewInfo> rules, AsyncCallback<Map<Integer, StatementTreeViewInfo>> callback);     | 
  | 33 |  |      public void createCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo, AsyncCallback<StatementTreeViewInfo> callback); | 
  | 34 |  |      public void deleteCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo, AsyncCallback<StatusInfo> callback); | 
  | 35 |  |      public void updateCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo, AsyncCallback<StatementTreeViewInfo> callback); | 
  | 36 |  |      public void changeState(String courseId, String newState, AsyncCallback<StatusInfo> callback); | 
  | 37 |  |      public void changeState(String courseId, String newState, Date currentVersionStart, AsyncCallback<StatusInfo> callback); | 
  | 38 |  |      | 
  | 39 |  |  } |