Coverage Report - org.kuali.student.core.statement.service.jaxws.ValidateStatementResponse
 
Classes in this File Line Coverage Branch Coverage Complexity
ValidateStatementResponse
0%
0/6
0%
0/2
1.5
 
 1  
 
 2  
 package org.kuali.student.core.statement.service.jaxws;
 3  
 
 4  
 import java.util.ArrayList;
 5  
 
 6  
 import javax.xml.bind.annotation.XmlAccessType;
 7  
 import javax.xml.bind.annotation.XmlAccessorType;
 8  
 import javax.xml.bind.annotation.XmlElement;
 9  
 import javax.xml.bind.annotation.XmlRootElement;
 10  
 import javax.xml.bind.annotation.XmlType;
 11  
 
 12  
 import org.kuali.student.common.validation.dto.ValidationResultInfo;
 13  
 
 14  
 /**
 15  
  * This class was generated by Apache CXF 2.2
 16  
  * Wed May 12 12:54:47 PDT 2010
 17  
  * Generated source version: 2.2
 18  
  */
 19  
 
 20  
 @XmlRootElement(name = "validateStatementResponse", namespace = "http://student.kuali.org/wsdl/statement")
 21  
 @XmlAccessorType(XmlAccessType.FIELD)
 22  
 @XmlType(name = "validateStatementResponse", namespace = "http://student.kuali.org/wsdl/statement")
 23  
 
 24  0
 public class ValidateStatementResponse {
 25  
 
 26  
     @XmlElement(name = "return")
 27  
     private java.util.List<ValidationResultInfo> _return;
 28  
 
 29  
     public java.util.List<ValidationResultInfo> getReturn() {
 30  0
             if (_return == null) {
 31  0
                     _return = new ArrayList<ValidationResultInfo>(0);
 32  
             }
 33  0
         return this._return;
 34  
     }
 35  
 
 36  
     public void setReturn(java.util.List<ValidationResultInfo> new_return)  {
 37  0
         this._return = new_return;
 38  0
     }
 39  
 
 40  
 }
 41