| 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 |
|
|
|
|
|
| 0% |
Uncovered Elements: 14 (14) |
Complexity: 7 |
Complexity Density: 1 |
|
| 29 |
|
public class CreditCourseProposalRpcGwtServlet extends DataGwtServlet implements |
| 30 |
|
CreditCourseProposalRpcService { |
| 31 |
|
|
| 32 |
|
final static Logger LOG = Logger.getLogger(CreditCourseProposalRpcGwtServlet.class); |
| 33 |
|
|
| 34 |
|
private static final long serialVersionUID = 1L; |
| 35 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 36 |
0
|
@Override... |
| 37 |
|
public List<StatementTreeViewInfo> getCourseStatements(String courseId, String nlUsageTypeKey, String language) throws Exception { |
| 38 |
0
|
return null; |
| 39 |
|
} |
| 40 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 41 |
0
|
@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 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 46 |
0
|
@Override... |
| 47 |
|
public StatementTreeViewInfo createCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo) throws Exception { |
| 48 |
0
|
return null; |
| 49 |
|
} |
| 50 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 51 |
0
|
@Override... |
| 52 |
|
public StatusInfo deleteCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo) throws Exception { |
| 53 |
0
|
return null; |
| 54 |
|
} |
| 55 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 56 |
0
|
@Override... |
| 57 |
|
public StatementTreeViewInfo updateCourseStatement(String courseId, StatementTreeViewInfo statementTreeViewInfo) throws Exception { |
| 58 |
0
|
return null; |
| 59 |
|
} |
| 60 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 61 |
0
|
@Override... |
| 62 |
|
public StatusInfo changeState(String courseId, String newState) throws Exception { |
| 63 |
0
|
return null; |
| 64 |
|
} |
| 65 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 66 |
0
|
public StatusInfo changeState(String courseId, String newState, Date currentVersionStart) throws Exception {... |
| 67 |
0
|
return null; |
| 68 |
|
} |
| 69 |
|
} |