| 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 = "createOrgPersonRelation", namespace = "http://student.kuali.org/wsdl/organization") |
| 31 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 32 | |
@XmlType(name = "createOrgPersonRelation", namespace = "http://student.kuali.org/wsdl/organization", propOrder = {"orgId","personId","orgPersonRelationTypeKey","orgPersonRelationInfo"}) |
| 33 | |
|
| 34 | 0 | public class CreateOrgPersonRelation { |
| 35 | |
|
| 36 | |
@XmlElement(name = "orgId") |
| 37 | |
private java.lang.String orgId; |
| 38 | |
@XmlElement(name = "personId") |
| 39 | |
private java.lang.String personId; |
| 40 | |
@XmlElement(name = "orgPersonRelationTypeKey") |
| 41 | |
private java.lang.String orgPersonRelationTypeKey; |
| 42 | |
@XmlElement(name = "orgPersonRelationInfo") |
| 43 | |
private org.kuali.student.core.organization.dto.OrgPersonRelationInfo orgPersonRelationInfo; |
| 44 | |
|
| 45 | |
public java.lang.String getOrgId() { |
| 46 | 0 | return this.orgId; |
| 47 | |
} |
| 48 | |
|
| 49 | |
public void setOrgId(java.lang.String newOrgId) { |
| 50 | 0 | this.orgId = newOrgId; |
| 51 | 0 | } |
| 52 | |
|
| 53 | |
public java.lang.String getPersonId() { |
| 54 | 0 | return this.personId; |
| 55 | |
} |
| 56 | |
|
| 57 | |
public void setPersonId(java.lang.String newPersonId) { |
| 58 | 0 | this.personId = newPersonId; |
| 59 | 0 | } |
| 60 | |
|
| 61 | |
public java.lang.String getOrgPersonRelationTypeKey() { |
| 62 | 0 | return this.orgPersonRelationTypeKey; |
| 63 | |
} |
| 64 | |
|
| 65 | |
public void setOrgPersonRelationTypeKey(java.lang.String newOrgPersonRelationTypeKey) { |
| 66 | 0 | this.orgPersonRelationTypeKey = newOrgPersonRelationTypeKey; |
| 67 | 0 | } |
| 68 | |
|
| 69 | |
public org.kuali.student.core.organization.dto.OrgPersonRelationInfo getOrgPersonRelationInfo() { |
| 70 | 0 | return this.orgPersonRelationInfo; |
| 71 | |
} |
| 72 | |
|
| 73 | |
public void setOrgPersonRelationInfo(org.kuali.student.core.organization.dto.OrgPersonRelationInfo newOrgPersonRelationInfo) { |
| 74 | 0 | this.orgPersonRelationInfo = newOrgPersonRelationInfo; |
| 75 | 0 | } |
| 76 | |
|
| 77 | |
} |
| 78 | |
|