1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.proposal.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 = "createProposalDocRelation", namespace = "http://student.kuali.org/wsdl/proposal") |
31 | |
@XmlAccessorType(XmlAccessType.FIELD) |
32 | |
@XmlType(name = "createProposalDocRelation", namespace = "http://student.kuali.org/wsdl/proposal", propOrder = {"proposalDocRelationType","documentId","proposalId","proposalDocRelationInfo"}) |
33 | |
|
34 | 0 | public class CreateProposalDocRelation { |
35 | |
|
36 | |
@XmlElement(name = "proposalDocRelationType") |
37 | |
private java.lang.String proposalDocRelationType; |
38 | |
@XmlElement(name = "documentId") |
39 | |
private java.lang.String documentId; |
40 | |
@XmlElement(name = "proposalId") |
41 | |
private java.lang.String proposalId; |
42 | |
@XmlElement(name = "proposalDocRelationInfo") |
43 | |
private org.kuali.student.core.proposal.dto.ProposalDocRelationInfo proposalDocRelationInfo; |
44 | |
|
45 | |
public java.lang.String getProposalDocRelationType() { |
46 | 0 | return this.proposalDocRelationType; |
47 | |
} |
48 | |
|
49 | |
public void setProposalDocRelationType(java.lang.String newProposalDocRelationType) { |
50 | 0 | this.proposalDocRelationType = newProposalDocRelationType; |
51 | 0 | } |
52 | |
|
53 | |
public java.lang.String getDocumentId() { |
54 | 0 | return this.documentId; |
55 | |
} |
56 | |
|
57 | |
public void setDocumentId(java.lang.String newDocumentId) { |
58 | 0 | this.documentId = newDocumentId; |
59 | 0 | } |
60 | |
|
61 | |
public java.lang.String getProposalId() { |
62 | 0 | return this.proposalId; |
63 | |
} |
64 | |
|
65 | |
public void setProposalId(java.lang.String newProposalId) { |
66 | 0 | this.proposalId = newProposalId; |
67 | 0 | } |
68 | |
|
69 | |
public org.kuali.student.core.proposal.dto.ProposalDocRelationInfo getProposalDocRelationInfo() { |
70 | 0 | return this.proposalDocRelationInfo; |
71 | |
} |
72 | |
|
73 | |
public void setProposalDocRelationInfo(org.kuali.student.core.proposal.dto.ProposalDocRelationInfo newProposalDocRelationInfo) { |
74 | 0 | this.proposalDocRelationInfo = newProposalDocRelationInfo; |
75 | 0 | } |
76 | |
|
77 | |
} |
78 | |
|