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 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
@XmlRootElement(name = "validateRefStatementRelationResponse", namespace = "http://student.kuali.org/wsdl/statement") |
21 | |
@XmlAccessorType(XmlAccessType.FIELD) |
22 | |
@XmlType(name = "validateRefStatementRelationResponse", namespace = "http://student.kuali.org/wsdl/statement") |
23 | |
|
24 | 0 | public class ValidateRefStatementRelationResponse { |
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 | |
|