| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.kuali.student.lum.lo.service.jaxws; |
| 18 | |
|
| 19 | |
import javax.xml.bind.annotation.XmlAccessType; |
| 20 | |
import javax.xml.bind.annotation.XmlAccessorType; |
| 21 | |
import javax.xml.bind.annotation.XmlElement; |
| 22 | |
import javax.xml.bind.annotation.XmlRootElement; |
| 23 | |
import javax.xml.bind.annotation.XmlType; |
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
@XmlRootElement(name = "createLoLoRelation", namespace = "http://student.kuali.org/wsdl/lo") |
| 32 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 33 | |
@XmlType(name = "createLoLoRelation", namespace = "http://student.kuali.org/wsdl/lo", propOrder = {"loId","relatedLoId","loLoRelationType","loLoRelationInfo"}) |
| 34 | |
|
| 35 | 0 | public class CreateLoLoRelation { |
| 36 | |
|
| 37 | |
@XmlElement(name = "loId") |
| 38 | |
private java.lang.String loId; |
| 39 | |
@XmlElement(name = "relatedLoId") |
| 40 | |
private java.lang.String relatedLoId; |
| 41 | |
@XmlElement(name = "loLoRelationType") |
| 42 | |
private java.lang.String loLoRelationType; |
| 43 | |
@XmlElement(name = "loLoRelationInfo") |
| 44 | |
private org.kuali.student.lum.lo.dto.LoLoRelationInfo loLoRelationInfo; |
| 45 | |
|
| 46 | |
public java.lang.String getLoId() { |
| 47 | 0 | return this.loId; |
| 48 | |
} |
| 49 | |
|
| 50 | |
public void setLoId(java.lang.String newLoId) { |
| 51 | 0 | this.loId = newLoId; |
| 52 | 0 | } |
| 53 | |
|
| 54 | |
public java.lang.String getRelatedLoId() { |
| 55 | 0 | return this.relatedLoId; |
| 56 | |
} |
| 57 | |
|
| 58 | |
public void setRelatedLoId(java.lang.String newRelatedLoId) { |
| 59 | 0 | this.relatedLoId = newRelatedLoId; |
| 60 | 0 | } |
| 61 | |
|
| 62 | |
public java.lang.String getLoLoRelationType() { |
| 63 | 0 | return this.loLoRelationType; |
| 64 | |
} |
| 65 | |
|
| 66 | |
public void setLoLoRelationType(java.lang.String newLoLoRelationType) { |
| 67 | 0 | this.loLoRelationType = newLoLoRelationType; |
| 68 | 0 | } |
| 69 | |
|
| 70 | |
public org.kuali.student.lum.lo.dto.LoLoRelationInfo getLoLoRelationInfo() { |
| 71 | 0 | return this.loLoRelationInfo; |
| 72 | |
} |
| 73 | |
|
| 74 | |
public void setLoLoRelationInfo(org.kuali.student.lum.lo.dto.LoLoRelationInfo newLoLoRelationInfo) { |
| 75 | 0 | this.loLoRelationInfo = newLoLoRelationInfo; |
| 76 | 0 | } |
| 77 | |
|
| 78 | |
} |
| 79 | |
|