1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.atp.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 = "createAtp", namespace = "http://student.kuali.org/wsdl/atp") |
31 | |
@XmlAccessorType(XmlAccessType.FIELD) |
32 | |
@XmlType(name = "createAtp", namespace = "http://student.kuali.org/wsdl/atp", propOrder = {"atpTypeKey","atpKey","atpInfo"}) |
33 | |
|
34 | 0 | public class CreateAtp { |
35 | |
|
36 | |
@XmlElement(name = "atpTypeKey") |
37 | |
private java.lang.String atpTypeKey; |
38 | |
@XmlElement(name = "atpKey") |
39 | |
private java.lang.String atpKey; |
40 | |
@XmlElement(name = "atpInfo") |
41 | |
private org.kuali.student.core.atp.dto.AtpInfo atpInfo; |
42 | |
|
43 | |
public java.lang.String getAtpTypeKey() { |
44 | 0 | return this.atpTypeKey; |
45 | |
} |
46 | |
|
47 | |
public void setAtpTypeKey(java.lang.String newAtpTypeKey) { |
48 | 0 | this.atpTypeKey = newAtpTypeKey; |
49 | 0 | } |
50 | |
|
51 | |
public java.lang.String getAtpKey() { |
52 | 0 | return this.atpKey; |
53 | |
} |
54 | |
|
55 | |
public void setAtpKey(java.lang.String newAtpKey) { |
56 | 0 | this.atpKey = newAtpKey; |
57 | 0 | } |
58 | |
|
59 | |
public org.kuali.student.core.atp.dto.AtpInfo getAtpInfo() { |
60 | 0 | return this.atpInfo; |
61 | |
} |
62 | |
|
63 | |
public void setAtpInfo(org.kuali.student.core.atp.dto.AtpInfo newAtpInfo) { |
64 | 0 | this.atpInfo = newAtpInfo; |
65 | 0 | } |
66 | |
|
67 | |
} |
68 | |
|