| 1 |  |   | 
  | 2 |  |  package org.kuali.student.core.statement.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 = "validateReqComponent", namespace = "http://student.kuali.org/wsdl/statement") | 
  | 17 |  |  @XmlAccessorType(XmlAccessType.FIELD) | 
  | 18 |  |  @XmlType(name = "validateReqComponent", namespace = "http://student.kuali.org/wsdl/statement", propOrder = {"validationType","reqComponentInfo"}) | 
  | 19 |  |   | 
  | 20 | 0 |  public class ValidateReqComponent { | 
  | 21 |  |   | 
  | 22 |  |      @XmlElement(name = "validationType") | 
  | 23 |  |      private java.lang.String validationType; | 
  | 24 |  |      @XmlElement(name = "reqComponentInfo") | 
  | 25 |  |      private org.kuali.student.core.statement.dto.ReqComponentInfo reqComponentInfo; | 
  | 26 |  |   | 
  | 27 |  |      public java.lang.String getValidationType() { | 
  | 28 | 0 |          return this.validationType; | 
  | 29 |  |      } | 
  | 30 |  |   | 
  | 31 |  |      public void setValidationType(java.lang.String newValidationType)  { | 
  | 32 | 0 |          this.validationType = newValidationType; | 
  | 33 | 0 |      } | 
  | 34 |  |   | 
  | 35 |  |      public org.kuali.student.core.statement.dto.ReqComponentInfo getReqComponentInfo() { | 
  | 36 | 0 |          return this.reqComponentInfo; | 
  | 37 |  |      } | 
  | 38 |  |   | 
  | 39 |  |      public void setReqComponentInfo(org.kuali.student.core.statement.dto.ReqComponentInfo newReqComponentInfo)  { | 
  | 40 | 0 |          this.reqComponentInfo = newReqComponentInfo; | 
  | 41 | 0 |      } | 
  | 42 |  |   | 
  | 43 |  |  } | 
  | 44 |  |   |