1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.organization.service.jaxws; |
17 | |
|
18 | |
import javax.xml.bind.annotation.XmlAccessType; |
19 | |
import javax.xml.bind.annotation.XmlAccessorType; |
20 | |
import javax.xml.bind.annotation.XmlElement; |
21 | |
import javax.xml.bind.annotation.XmlRootElement; |
22 | |
import javax.xml.bind.annotation.XmlType; |
23 | |
|
24 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
@XmlRootElement(name = "validateOrgResponse", namespace = "http://student.kuali.org/wsdl/organization") |
32 | |
@XmlAccessorType(XmlAccessType.FIELD) |
33 | |
@XmlType(name = "validateOrgResponse", namespace = "http://student.kuali.org/wsdl/organization") |
34 | 0 | public class ValidateOrgResponse { |
35 | |
|
36 | |
@XmlElement(name = "return") |
37 | |
private java.util.List<ValidationResultInfo> _return; |
38 | |
|
39 | |
public java.util.List<ValidationResultInfo> getReturn() { |
40 | 0 | if (_return == null) { |
41 | 0 | _return = new java.util.ArrayList<ValidationResultInfo>(0); |
42 | |
} |
43 | 0 | return this._return; |
44 | |
} |
45 | |
|
46 | |
public void setReturn( |
47 | |
java.util.List<ValidationResultInfo> new_return) { |
48 | 0 | this._return = new_return; |
49 | 0 | } |
50 | |
|
51 | |
} |