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 = "translateReqComponentToNLResponse", namespace = "http://student.kuali.org/wsdl/statement") |
17 | |
@XmlAccessorType(XmlAccessType.FIELD) |
18 | |
@XmlType(name = "translateReqComponentToNLResponse", namespace = "http://student.kuali.org/wsdl/statement") |
19 | |
|
20 | 0 | public class TranslateReqComponentToNLResponse { |
21 | |
|
22 | |
@XmlElement(name = "return") |
23 | |
private java.lang.String _return; |
24 | |
|
25 | |
public java.lang.String getReturn() { |
26 | 0 | return this._return; |
27 | |
} |
28 | |
|
29 | |
public void setReturn(java.lang.String new_return) { |
30 | 0 | this._return = new_return; |
31 | 0 | } |
32 | |
|
33 | |
} |
34 | |
|