Coverage Report - org.kuali.student.common.dictionary.service.old.jaxws.GetObjectStructure
 
Classes in this File Line Coverage Branch Coverage Complexity
GetObjectStructure
0%
0/4
N/A
1
 
 1  
 
 2  
 package org.kuali.student.common.dictionary.service.old.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
 12  
  * Fri May 14 11:26:06 PDT 2010
 13  
  * Generated source version: 2.2
 14  
  */
 15  
 
 16  
 @XmlRootElement(name = "getObjectStructure", namespace = "http://student.kuali.org/wsdl/dictionary")
 17  
 @XmlAccessorType(XmlAccessType.FIELD)
 18  
 @XmlType(name = "getObjectStructure", namespace = "http://student.kuali.org/wsdl/dictionary")
 19  
 
 20  0
 public class GetObjectStructure {
 21  
 
 22  
     @XmlElement(name = "objectTypeKey")
 23  
     private java.lang.String objectTypeKey;
 24  
 
 25  
     public java.lang.String getObjectTypeKey() {
 26  0
         return this.objectTypeKey;
 27  
     }
 28  
 
 29  
     public void setObjectTypeKey(java.lang.String newObjectTypeKey)  {
 30  0
         this.objectTypeKey = newObjectTypeKey;
 31  0
     }
 32  
 
 33  
 }
 34