View Javadoc

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   * This class was generated by Apache CXF 2.2.9
12   * Thu Nov 04 11:39:27 EDT 2010
13   * Generated source version: 2.2.9
14   */
15  
16  @XmlRootElement(name = "deleteCourse", namespace = "http://student.kuali.org/wsdl/course")
17  @XmlAccessorType(XmlAccessType.FIELD)
18  @XmlType(name = "deleteCourse", namespace = "http://student.kuali.org/wsdl/course")
19  
20  public class DeleteCourse {
21  
22      @XmlElement(name = "courseId")
23      private java.lang.String courseId;
24  
25      public java.lang.String getCourseId() {
26          return this.courseId;
27      }
28  
29      public void setCourseId(java.lang.String newCourseId)  {
30          this.courseId = newCourseId;
31      }
32  
33  }
34