|  1 |     | 
     | 
  |  2 |     | 
     | 
  |  3 |     | 
     | 
  |  4 |     | 
     | 
  |  5 |     | 
     | 
  |  6 |     | 
     | 
  |  7 |     | 
     | 
  |  8 |     | 
     | 
  |  9 |     | 
     | 
  |  10 |     | 
     | 
  |  11 |     | 
     | 
  |  12 |     | 
     | 
  |  13 |     | 
     | 
  |  14 |     | 
     | 
  |  15 |     | 
     | 
  |  16 |     | 
   package org.kuali.student.lum.lu.ui.course.server.gwt;  | 
  |  17 |     | 
     | 
  |  18 |     | 
   import java.util.Date;  | 
  |  19 |     | 
   import java.util.List;  | 
  |  20 |     | 
   import java.util.Map;  | 
  |  21 |     | 
     | 
  |  22 |     | 
   import org.apache.log4j.Logger;  | 
  |  23 |     | 
   import org.kuali.student.common.ui.server.gwt.DataGwtServlet;  | 
  |  24 |     | 
   import org.kuali.student.core.dto.StatusInfo;  | 
  |  25 |     | 
   import org.kuali.student.core.statement.dto.StatementTreeViewInfo;  | 
  |  26 |     | 
   import org.kuali.student.lum.lu.ui.course.client.requirements.CourseRequirementsDataModel;  | 
  |  27 |     | 
   import org.kuali.student.lum.lu.ui.course.client.service.CreditCourseProposalRpcService;  | 
  |  28 |     | 
     | 
  |  29 |    0 |    public class CreditCourseProposalRpcGwtServlet extends DataGwtServlet implements  | 
  |  30 |     | 
           CreditCourseProposalRpcService { | 
  |  31 |     | 
     | 
  |  32 |    0 |            final static Logger LOG = Logger.getLogger(CreditCourseProposalRpcGwtServlet.class);  | 
  |  33 |     | 
     | 
  |  34 |     | 
           private static final long serialVersionUID = 1L;  | 
  |  35 |     | 
     | 
  |  36 |     | 
       @Override  | 
  |  37 |     | 
       public List<StatementTreeViewInfo> getCourseStatements(String courseId, String nlUsageTypeKey, String language) throws Exception { | 
  |  38 |    0 |            return null;    | 
  |  39 |     | 
       }  | 
  |  40 |     | 
     | 
  |  41 |     | 
       @Override  | 
  |  42 |     | 
       public Map<Integer, StatementTreeViewInfo> storeCourseStatements(String courseId, Map<Integer, CourseRequirementsDataModel.requirementState> states, Map<Integer, StatementTreeViewInfo> rules) throws Exception { | 
  |  43 |    0 |            return null;  | 
  |  44 |     | 
       }  | 
  |  45 |     | 
     | 
  |  46 |     | 
       @Override  | 
  |  47 |     | 
       public StatementTreeViewInfo createCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo) throws Exception { | 
  |  48 |    0 |            return null;    | 
  |  49 |     | 
       }  | 
  |  50 |     | 
     | 
  |  51 |     | 
       @Override  | 
  |  52 |     | 
       public StatusInfo deleteCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo) throws Exception { | 
  |  53 |    0 |            return null;    | 
  |  54 |     | 
       }  | 
  |  55 |     | 
         | 
  |  56 |     | 
       @Override  | 
  |  57 |     | 
       public StatementTreeViewInfo updateCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo) throws Exception { | 
  |  58 |    0 |            return null;  | 
  |  59 |     | 
       }  | 
  |  60 |     | 
         | 
  |  61 |     | 
       @Override  | 
  |  62 |     | 
       public StatusInfo changeState(String courseId, String newState) throws Exception { | 
  |  63 |    0 |                return null;  | 
  |  64 |     | 
       }  | 
  |  65 |     | 
         | 
  |  66 |     | 
       public StatusInfo changeState(String courseId, String newState, Date currentVersionStart) throws Exception { | 
  |  67 |    0 |                return null;  | 
  |  68 |     | 
       }  | 
  |  69 |     | 
   }  |