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 = "updateCourse", namespace = "http://student.kuali.org/wsdl/course")
17 @XmlAccessorType(XmlAccessType.FIELD)
18 @XmlType(name = "updateCourse", namespace = "http://student.kuali.org/wsdl/course")
19
20 public class UpdateCourse {
21
22 @XmlElement(name = "courseInfo")
23 private org.kuali.student.lum.course.dto.CourseInfo courseInfo;
24
25 public org.kuali.student.lum.course.dto.CourseInfo getCourseInfo() {
26 return this.courseInfo;
27 }
28
29 public void setCourseInfo(org.kuali.student.lum.course.dto.CourseInfo newCourseInfo) {
30 this.courseInfo = newCourseInfo;
31 }
32
33 }
34