001
002 package org.kuali.student.common.dictionary.service.old.jaxws;
003
004 import javax.xml.bind.annotation.XmlAccessType;
005 import javax.xml.bind.annotation.XmlAccessorType;
006 import javax.xml.bind.annotation.XmlElement;
007 import javax.xml.bind.annotation.XmlRootElement;
008 import javax.xml.bind.annotation.XmlType;
009
010 /**
011 * This class was generated by Apache CXF 2.2
012 * Fri May 14 11:26:06 PDT 2010
013 * Generated source version: 2.2
014 */
015
016 @XmlRootElement(name = "getObjectStructure", namespace = "http://student.kuali.org/wsdl/dictionary")
017 @XmlAccessorType(XmlAccessType.FIELD)
018 @XmlType(name = "getObjectStructure", namespace = "http://student.kuali.org/wsdl/dictionary")
019
020 public class GetObjectStructure {
021
022 @XmlElement(name = "objectTypeKey")
023 private java.lang.String objectTypeKey;
024
025 public java.lang.String getObjectTypeKey() {
026 return this.objectTypeKey;
027 }
028
029 public void setObjectTypeKey(java.lang.String newObjectTypeKey) {
030 this.objectTypeKey = newObjectTypeKey;
031 }
032
033 }
034