| 1 |
|
|
| 2 |
|
package org.kuali.student.lum.course.service.jaxws; |
| 3 |
|
|
| 4 |
|
import javax.xml.bind.annotation.XmlAccessType; |
| 5 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
| 6 |
|
import javax.xml.bind.annotation.XmlElement; |
| 7 |
|
import javax.xml.bind.annotation.XmlRootElement; |
| 8 |
|
import javax.xml.bind.annotation.XmlType; |
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
@XmlRootElement(name = "createCourseStatement", namespace = "http://student.kuali.org/wsdl/course") |
| 17 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
| 18 |
|
@XmlType(name = "createCourseStatement", namespace = "http://student.kuali.org/wsdl/course", propOrder = {"courseId", "statementTreeViewInfo"}) |
| 19 |
|
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
| 20 |
|
public class CreateCourseStatement { |
| 21 |
|
|
| 22 |
|
@XmlElement(name = "courseId") |
| 23 |
|
private java.lang.String courseId; |
| 24 |
|
@XmlElement(name = "statementTreeViewInfo") |
| 25 |
|
private org.kuali.student.core.statement.dto.StatementTreeViewInfo statementTreeViewInfo; |
| 26 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 27 |
0
|
public java.lang.String getCourseId() {... |
| 28 |
0
|
return this.courseId; |
| 29 |
|
} |
| 30 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 31 |
0
|
public void setCourseId(java.lang.String newCourseId) {... |
| 32 |
0
|
this.courseId = newCourseId; |
| 33 |
|
} |
| 34 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 35 |
0
|
public org.kuali.student.core.statement.dto.StatementTreeViewInfo getStatementTreeViewInfo() {... |
| 36 |
0
|
return this.statementTreeViewInfo; |
| 37 |
|
} |
| 38 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 39 |
0
|
public void setStatementTreeViewInfo(org.kuali.student.core.statement.dto.StatementTreeViewInfo newStatementTreeViewInfo) {... |
| 40 |
0
|
this.statementTreeViewInfo = newStatementTreeViewInfo; |
| 41 |
|
} |
| 42 |
|
|
| 43 |
|
} |
| 44 |
|
|