1
2 package org.kuali.student.common.dictionary.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 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
10
11
12
13
14
15
16
17 @XmlRootElement(name = "getObjectStructureResponse", namespace = "http://student.kuali.org/wsdl/dictionary")
18 @XmlAccessorType(XmlAccessType.FIELD)
19 @XmlType(name = "getObjectStructureResponse", namespace = "http://student.kuali.org/wsdl/dictionary")
20
21 public class GetObjectStructureResponse {
22
23 @XmlElement(name = "return")
24 @XmlJavaTypeAdapter(ObjStructXmlTypeAdapter.class)
25 private org.kuali.student.common.dictionary.dto.ObjectStructureDefinition _return;
26
27 public org.kuali.student.common.dictionary.dto.ObjectStructureDefinition getReturn() {
28 return this._return;
29 }
30
31 public void setReturn(org.kuali.student.common.dictionary.dto.ObjectStructureDefinition new_return) {
32 this._return = new_return;
33 }
34
35 }
36