Coverage Report - org.kuali.student.lum.lu.ui.course.server.gwt.CreditCourseProposalRpcGwtServlet
 
Classes in this File Line Coverage Branch Coverage Complexity
CreditCourseProposalRpcGwtServlet
0%
0/9
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 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  
 }