1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.document.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 = "createDocument", namespace = "http://student.kuali.org/wsdl/document") |
31 | |
@XmlAccessorType(XmlAccessType.FIELD) |
32 | |
@XmlType(name = "createDocument", namespace = "http://student.kuali.org/wsdl/document", propOrder = {"documentTypeKey","documentCategoryKey","documentInfo"}) |
33 | |
|
34 | 0 | public class CreateDocument { |
35 | |
|
36 | |
@XmlElement(name = "documentTypeKey") |
37 | |
private java.lang.String documentTypeKey; |
38 | |
@XmlElement(name = "documentCategoryKey") |
39 | |
private java.lang.String documentCategoryKey; |
40 | |
@XmlElement(name = "documentInfo") |
41 | |
private org.kuali.student.core.document.dto.DocumentInfo documentInfo; |
42 | |
|
43 | |
public java.lang.String getDocumentTypeKey() { |
44 | 0 | return this.documentTypeKey; |
45 | |
} |
46 | |
|
47 | |
public void setDocumentTypeKey(java.lang.String newDocumentTypeKey) { |
48 | 0 | this.documentTypeKey = newDocumentTypeKey; |
49 | 0 | } |
50 | |
|
51 | |
public java.lang.String getDocumentCategoryKey() { |
52 | 0 | return this.documentCategoryKey; |
53 | |
} |
54 | |
|
55 | |
public void setDocumentCategoryKey(java.lang.String newDocumentCategoryKey) { |
56 | 0 | this.documentCategoryKey = newDocumentCategoryKey; |
57 | 0 | } |
58 | |
|
59 | |
public org.kuali.student.core.document.dto.DocumentInfo getDocumentInfo() { |
60 | 0 | return this.documentInfo; |
61 | |
} |
62 | |
|
63 | |
public void setDocumentInfo(org.kuali.student.core.document.dto.DocumentInfo newDocumentInfo) { |
64 | 0 | this.documentInfo = newDocumentInfo; |
65 | 0 | } |
66 | |
|
67 | |
} |
68 | |
|