1 package org.kuali.ole.select.bo;
2
3 import org.kuali.ole.select.businessobject.OlePurchaseOrderItem;
4 import org.kuali.ole.select.document.OlePurchaseOrderDocument;
5 import org.kuali.ole.select.lookup.DocData;
6 import org.kuali.ole.vnd.businessobject.VendorTransmissionFormatDetail;
7
8
9
10
11
12
13
14
15 public class OLEClaimingByTitle {
16 private String author;
17 private String title;
18 private String placeOfPublication;
19 private String publisherName;
20 private String publicationDate;
21 private String isxn;
22 private String vendorItemIdentifier;
23 private String poOrderedNum;
24 private String poOrderedDate;
25 private String claimNumber;
26 private String claimNote;
27 private OLEClaimingAddress toAddress;
28 private OLEClaimingAddress fromAddress;
29 private String poItemId;
30
31 private VendorTransmissionFormatDetail vendorTransmissionFormatDetail;
32 private String emailAddress;
33
34 public String getEmailAddress() {
35 return emailAddress;
36 }
37
38 public void setEmailAddress(String emailAddress) {
39 this.emailAddress = emailAddress;
40 }
41
42
43 public VendorTransmissionFormatDetail getVendorTransmissionFormatDetail() {
44 return vendorTransmissionFormatDetail;
45 }
46
47 public void setVendorTransmissionFormatDetail(VendorTransmissionFormatDetail vendorTransmissionFormatDetail) {
48 this.vendorTransmissionFormatDetail = vendorTransmissionFormatDetail;
49 }
50
51 public OLEClaimingByTitle() {
52 super();
53 }
54
55 public String getPoItemId() {
56 return poItemId;
57 }
58
59 public void setPoItemId(String poItemId) {
60 this.poItemId = poItemId;
61 }
62
63 public OLEClaimingAddress getToAddress() {
64 return toAddress;
65 }
66
67 public void setToAddress(OLEClaimingAddress toAddress) {
68 this.toAddress = toAddress;
69 }
70
71 public OLEClaimingAddress getFromAddress() {
72 return fromAddress;
73 }
74
75 public void setFromAddress(OLEClaimingAddress fromAddress) {
76 this.fromAddress = fromAddress;
77 }
78
79 public String getTitle() {
80 return title;
81 }
82
83 public void setTitle(String title) {
84 this.title = title;
85 }
86
87 public String getAuthor() {
88 return author;
89 }
90
91 public void setAuthor(String author) {
92 this.author = author;
93 }
94
95 public String getPlaceOfPublication() {
96 return placeOfPublication;
97 }
98
99 public void setPlaceOfPublication(String placeOfPublication) {
100 this.placeOfPublication = placeOfPublication;
101 }
102
103 public String getPublisherName() {
104 return publisherName;
105 }
106
107 public void setPublisherName(String publisherName) {
108 this.publisherName = publisherName;
109 }
110
111 public String getPublicationDate() {
112 return publicationDate;
113 }
114
115 public void setPublicationDate(String publicationDate) {
116 this.publicationDate = publicationDate;
117 }
118
119 public String getIsxn() {
120 return isxn;
121 }
122
123 public void setIsxn(String isxn) {
124 this.isxn = isxn;
125 }
126
127 public String getVendorItemIdentifier() {
128 return vendorItemIdentifier;
129 }
130
131 public void setVendorItemIdentifier(String vendorItemIdentifier) {
132 this.vendorItemIdentifier = vendorItemIdentifier;
133 }
134
135 public String getPoOrderedNum() {
136 return poOrderedNum;
137 }
138
139 public void setPoOrderedNum(String poOrderedNum) {
140 this.poOrderedNum = poOrderedNum;
141 }
142
143 public String getPoOrderedDate() {
144 return poOrderedDate;
145 }
146
147 public void setPoOrderedDate(String poOrderedDate) {
148 this.poOrderedDate = poOrderedDate;
149 }
150
151 public String getClaimNumber() {
152 return claimNumber;
153 }
154
155 public void setClaimNumber(String claimNumber) {
156 this.claimNumber = claimNumber;
157 }
158
159 public String getClaimNote() {
160 return claimNote;
161 }
162
163 public void setClaimNote(String claimNote) {
164 this.claimNote = claimNote;
165 }
166 }