| 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 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
@XmlRootElement(name = "isDescendant", namespace = "http://student.kuali.org/wsdl/organization") |
| 31 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 32 | |
@XmlType(name = "isDescendant", namespace = "http://student.kuali.org/wsdl/organization", propOrder = {"orgId","descendantOrgId","orgHierarchy"}) |
| 33 | |
|
| 34 | 0 | public class IsDescendant { |
| 35 | |
|
| 36 | |
@XmlElement(name = "orgId") |
| 37 | |
private java.lang.String orgId; |
| 38 | |
@XmlElement(name = "descendantOrgId") |
| 39 | |
private java.lang.String descendantOrgId; |
| 40 | |
@XmlElement(name = "orgHierarchy") |
| 41 | |
private java.lang.String orgHierarchy; |
| 42 | |
|
| 43 | |
public java.lang.String getOrgId() { |
| 44 | 0 | return this.orgId; |
| 45 | |
} |
| 46 | |
|
| 47 | |
public void setOrgId(java.lang.String newOrgId) { |
| 48 | 0 | this.orgId = newOrgId; |
| 49 | 0 | } |
| 50 | |
|
| 51 | |
public java.lang.String getDescendantOrgId() { |
| 52 | 0 | return this.descendantOrgId; |
| 53 | |
} |
| 54 | |
|
| 55 | |
public void setDescendantOrgId(java.lang.String newDescendantOrgId) { |
| 56 | 0 | this.descendantOrgId = newDescendantOrgId; |
| 57 | 0 | } |
| 58 | |
|
| 59 | |
public java.lang.String getOrgHierarchy() { |
| 60 | 0 | return this.orgHierarchy; |
| 61 | |
} |
| 62 | |
|
| 63 | |
public void setOrgHierarchy(java.lang.String newOrgHierarchy) { |
| 64 | 0 | this.orgHierarchy = newOrgHierarchy; |
| 65 | 0 | } |
| 66 | |
|
| 67 | |
} |
| 68 | |
|