| 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 = "setCurrentCourseVersion", namespace = "http://student.kuali.org/wsdl/course") | 
  | 17 |  |  @XmlAccessorType(XmlAccessType.FIELD) | 
  | 18 |  |  @XmlType(name = "setCurrentCourseVersion", namespace = "http://student.kuali.org/wsdl/course", propOrder = {"courseVersionId", "currentVersionStart"}) | 
  | 19 |  |   | 
  | 20 | 0 |  public class SetCurrentCourseVersion { | 
  | 21 |  |   | 
  | 22 |  |      @XmlElement(name = "courseVersionId") | 
  | 23 |  |      private java.lang.String courseVersionId; | 
  | 24 |  |      @XmlElement(name = "currentVersionStart") | 
  | 25 |  |      private java.util.Date currentVersionStart; | 
  | 26 |  |   | 
  | 27 |  |      public java.lang.String getCourseVersionId() { | 
  | 28 | 0 |          return this.courseVersionId; | 
  | 29 |  |      } | 
  | 30 |  |   | 
  | 31 |  |      public void setCourseVersionId(java.lang.String newCourseVersionId)  { | 
  | 32 | 0 |          this.courseVersionId = newCourseVersionId; | 
  | 33 | 0 |      } | 
  | 34 |  |   | 
  | 35 |  |      public java.util.Date getCurrentVersionStart() { | 
  | 36 | 0 |          return this.currentVersionStart; | 
  | 37 |  |      } | 
  | 38 |  |   | 
  | 39 |  |      public void setCurrentVersionStart(java.util.Date newCurrentVersionStart)  { | 
  | 40 | 0 |          this.currentVersionStart = newCurrentVersionStart; | 
  | 41 | 0 |      } | 
  | 42 |  |   | 
  | 43 |  |  } | 
  | 44 |  |   |