View Javadoc
1   /*
2    * Copyright 2011 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.select.businessobject;
17  
18  import org.apache.cxf.common.util.StringUtils;
19  import org.kuali.rice.krad.bo.BusinessObjectBase;
20  
21  import java.util.ArrayList;
22  import java.util.LinkedHashMap;
23  
24  public class BibInfoBean extends BusinessObjectBase {
25  
26      private String leader;
27  
28      private String controlField;
29  
30      // private String requestorSourceType;
31  
32      private String titleId;
33  
34      private String title;
35  
36      private String mainTitle;
37  
38      private String subTitle;
39  
40      private ArrayList<String> authors;
41  
42      private String author;
43  
44      private String edition;
45  
46      private String series;
47  
48      private String publisher;
49  
50      private String localIdentifier;
51  
52      private String placeOfPublication;
53  
54      private String yearOfPublication;
55  
56      private String standardNumber;
57  
58      private String typeOfStandardNumber;
59  
60      private String routeRequesterReceipt;
61  
62      private String requestSource;
63  
64      private String requisitionSource;
65  
66      private String requestSourceUrl;
67  
68      private Long startPage;
69  
70      private Long endPage;
71  
72      private String category;
73  
74      private String isbn;
75  
76      private String accountNumber;
77  
78      private String librarynote;
79  
80      private Double listprice;
81  
82      private Long quantity;
83  
84      private String ybp;
85  
86      private String subAccountNumber;
87  
88      private String binding;
89  
90      private String initials;
91  
92      private String dateOrdered;
93  
94      private String vendorCode;
95  
96      private String ybpuid;
97  
98      private String volumeNumber;
99  
100     private String location;
101 
102     private String requisitionDescription;
103 
104     private String financialYear;
105 
106     private String fundingSource;
107 
108     private String deliveryCampusCode;
109 
110     private String deliveryToName;
111 
112     private String deliveryBuildingCode;
113 
114     private String deliveryBuildingLine1Address;
115 
116     private String deliveryBuildingRoomNumber;
117 
118     private String deliveryCityName;
119 
120     private String deliveryStateCode;
121 
122     private String deliveryPostalCode;
123 
124     private String deliveryCountryCode;
125 
126     private String vendorCustomerNumber;
127 
128     private String purchaseOrderTransmissionMethodCode;
129 
130     private String purchaseOrderCostSourceCode;
131 
132     private String requestorPersonName;
133 
134     private String requestorPersonEmailAddress;
135 
136     private String requestorPersonPhoneNumber;
137 
138     private String dateOfPublication;
139 
140     private String physicalDescription;
141 
142     private String format;
143 
144     private String subjects;
145 
146     private String price;
147 
148     private String noOfCopies;
149 
150     private String requestorContact;
151 
152     private String requestorsFirstName;
153 
154     private String requestorsLastName;
155 
156     private String requestorsAddress1;
157 
158     private String requestorsAddress2;
159 
160     private String requestorsCity;
161 
162     private String requestorsState;
163 
164     private String requestorsZipCode;
165 
166     private String requestorsCountryCode;
167 
168     private String requestorsPhone;
169 
170     private String requestorsEmail;
171 
172     private String requestorsSMS;
173 
174     private String requestorType;
175 
176     private String requestersNotes;
177 
178     private String selector;
179 
180     private String selectorNotes;
181 
182     private String uom;
183 
184     private String chart;
185 
186     private String objectCode;
187 
188     private Long percent;
189 
190     private String chartOfAccountsCode;
191 
192     private String organizationCode;
193 
194     private String documentFundingSourceCode;
195 
196     private boolean useTaxIndicator;
197 
198     private boolean deliveryBuildingOtherIndicator;
199 
200     private String organizationAutomaticPurchaseOrderLimit;
201 
202     private boolean purchaseOrderAutomaticIndicator;
203 
204     private boolean receivingDocumentRequiredIndicator;
205 
206     private boolean paymentRequestPositiveApprovalIndicator;
207 
208     private String itemTypeCode;
209 
210     private String requestor;
211 
212     private String seriesOfStatement;
213 
214     private String fundCode;
215 
216     private String purchaseOrderType;
217 
218     private String operatorInitials;
219 
220     private String billingName;
221 
222     private String billingLine1Address;
223 
224     private String billingCityName;
225 
226     private String billingStateCode;
227 
228     private String billingPostalCode;
229 
230     private String billingPhoneNumber;
231 
232     private String billingCountryCode;
233 
234     private String docStoreOperation;
235 
236     private String docCategoryType;
237 
238     private String docCategoryUUID;
239 
240     private String failure;
241 
242     private String docStoreIngestionId;
243     
244     /*private boolean licensingRequirementIndicator;*/
245     
246     /*private String licensingRequirementCode;*/
247 
248     private String requestorId;
249 
250     public String getFailure() {
251         return failure;
252     }
253 
254     public void setFailure(String failure) {
255         this.failure = failure;
256     }
257 
258     public String getTitle() {
259         return title;
260     }
261 
262     public String getTitleId() {
263         return titleId;
264     }
265 
266     public void setTitleId(String titleId) {
267         this.titleId = titleId;
268     }
269 
270     public void setTitle(String title) {
271         this.title = title;
272     }
273 
274     public String getMainTitle() {
275         return mainTitle;
276     }
277 
278     public void setMainTitle(String mainTitle) {
279         this.mainTitle = mainTitle;
280     }
281 
282     public String getSubTitle() {
283         return subTitle;
284     }
285 
286     public void setSubTitle(String subTitle) {
287         this.subTitle = subTitle;
288     }
289 
290 
291     public String getAuthor() {
292         return author;
293     }
294 
295     public Long getStartPage() {
296         return startPage;
297     }
298 
299     public void setStartPage(Long startPage) {
300         this.startPage = startPage;
301     }
302 
303     public Long getEndPage() {
304         return endPage;
305     }
306 
307     public void setEndPage(Long endPage) {
308         this.endPage = endPage;
309     }
310 
311     public String getCategory() {
312         return category;
313     }
314 
315     public void setCategory(String category) {
316         this.category = category;
317     }
318 
319     public ArrayList<String> getAuthors() {
320         return authors;
321     }
322 
323     public void setAuthors(ArrayList<String> authors) {
324         this.authors = authors;
325     }
326 
327     public void setAuthor(String author) {
328         this.author = author;
329     }
330 
331     public String getEdition() {
332         return edition;
333     }
334 
335     public void setEdition(String edition) {
336         this.edition = edition;
337     }
338 
339     public String getPublisher() {
340         return publisher;
341     }
342 
343     public void setPublisher(String publisher) {
344         this.publisher = publisher;
345     }
346 
347     public String getLocalIdentifier() {
348         return localIdentifier;
349     }
350 
351     public void setLocalIdentifier(String localIdentifier) {
352         this.localIdentifier = localIdentifier;
353     }
354 
355     public String getPlaceOfPublication() {
356         return placeOfPublication;
357     }
358 
359     public void setPlaceOfPublication(String placeOfPublication) {
360         this.placeOfPublication = placeOfPublication;
361     }
362 
363     public String getYearOfPublication() {
364         return yearOfPublication;
365     }
366 
367     public void setYearOfPublication(String yearOfPublication) {
368         this.yearOfPublication = yearOfPublication;
369     }
370 
371     public String getStandardNumber() {
372         return standardNumber;
373     }
374 
375     public void setStandardNumber(String standardNumber) {
376         this.standardNumber = standardNumber;
377     }
378 
379     public String getTypeOfStandardNumber() {
380         return typeOfStandardNumber;
381     }
382 
383     public void setTypeOfStandardNumber(String typeOfStandardNumber) {
384         this.typeOfStandardNumber = typeOfStandardNumber;
385     }
386 
387     public String getRouteRequesterReceipt() {
388         return routeRequesterReceipt;
389     }
390 
391     public void setRouteRequesterReceipt(String routeRequesterReceipt) {
392         this.routeRequesterReceipt = routeRequesterReceipt;
393     }
394 
395     public String getRequestSource() {
396         return requestSource;
397     }
398 
399     public void setRequestSource(String requestSource) {
400         this.requestSource = requestSource;
401     }
402 
403     public String getRequestSourceUrl() {
404         return requestSourceUrl;
405     }
406 
407     public void setRequestSourceUrl(String requestSourceUrl) {
408         this.requestSourceUrl = requestSourceUrl;
409     }
410 
411     public String getSeries() {
412         return series;
413     }
414 
415     public void setSeries(String series) {
416         this.series = series;
417     }
418 
419     public String getIsbn() {
420         return isbn;
421     }
422 
423     public void setIsbn(String isbn) {
424         this.isbn = isbn;
425     }
426 
427     public String getRequisitionDescription() {
428         return requisitionDescription;
429     }
430 
431     public void setRequisitionDescription(String requisitionDescription) {
432         this.requisitionDescription = requisitionDescription;
433     }
434 
435     public String getFinantialYear() {
436         return financialYear;
437     }
438 
439     public void setFinantialYear(String finantialYear) {
440         this.financialYear = finantialYear;
441     }
442 
443     public String getAccountNumber() {
444         return accountNumber;
445     }
446 
447     public void setAccountNumber(String accountNumber) {
448         this.accountNumber = accountNumber;
449     }
450 
451     public String getLocation() {
452         return location;
453     }
454 
455     public void setLocation(String location) {
456         this.location = location;
457     }
458 
459     public String getLibrarynote() {
460         return librarynote;
461     }
462 
463     public void setLibrarynote(String librarynote) {
464         this.librarynote = librarynote;
465     }
466 
467     public Double getListprice() {
468         return listprice;
469     }
470 
471     public void setListprice(Double listprice) {
472         this.listprice = listprice;
473     }
474 
475     public Long getQuantity() {
476         return quantity;
477     }
478 
479     public void setQuantity(Long quantity) {
480         this.quantity = quantity;
481     }
482 
483     public String getYbp() {
484         return ybp;
485     }
486 
487     public void setYbp(String ybp) {
488         this.ybp = ybp;
489     }
490 
491     public String getSubAccountNumber() {
492         return subAccountNumber;
493     }
494 
495     public void setSubAccountNumber(String subAccountNumber) {
496         this.subAccountNumber = subAccountNumber;
497     }
498 
499     public String getBinding() {
500         return binding;
501     }
502 
503     public void setBinding(String binding) {
504         this.binding = binding;
505     }
506 
507     public String getInitials() {
508         return initials;
509     }
510 
511     public void setInitials(String initials) {
512         this.initials = initials;
513     }
514 
515     public String getDateOrdered() {
516         return dateOrdered;
517     }
518 
519     public void setDateOrdered(String dateOrdered) {
520         this.dateOrdered = dateOrdered;
521     }
522 
523     public String getVendorCode() {
524         return vendorCode;
525     }
526 
527     public void setVendorCode(String vendorCode) {
528         this.vendorCode = vendorCode;
529     }
530 
531     public String getYbpuid() {
532         return ybpuid;
533     }
534 
535     public void setYbpuid(String ybpuid) {
536         this.ybpuid = ybpuid;
537     }
538 
539     public String getVolumeNumber() {
540         return volumeNumber;
541     }
542 
543     public void setVolumeNumber(String volumeNumber) {
544         this.volumeNumber = volumeNumber;
545     }
546 
547     public String getFundingSource() {
548         return fundingSource;
549     }
550 
551     public void setFundingSource(String fundingSource) {
552         this.fundingSource = fundingSource;
553     }
554 
555     public String getDeliveryCampusCode() {
556         return deliveryCampusCode;
557     }
558 
559     public void setDeliveryCampusCode(String deliveryCampusCode) {
560         this.deliveryCampusCode = deliveryCampusCode;
561     }
562 
563     public String getDeliveryToName() {
564         return deliveryToName;
565     }
566 
567     public void setDeliveryToName(String deliveryToName) {
568         this.deliveryToName = deliveryToName;
569     }
570 
571     public String getDeliveryBuildingCode() {
572         return deliveryBuildingCode;
573     }
574 
575     public void setDeliveryBuildingCode(String deliveryBuildingCode) {
576         this.deliveryBuildingCode = deliveryBuildingCode;
577     }
578 
579     public String getDeliveryBuildingLine1Address() {
580         return deliveryBuildingLine1Address;
581     }
582 
583     public void setDeliveryBuildingLine1Address(String deliveryBuildingLine1Address) {
584         this.deliveryBuildingLine1Address = deliveryBuildingLine1Address;
585     }
586 
587     public String getDeliveryBuildingRoomNumber() {
588         return deliveryBuildingRoomNumber;
589     }
590 
591     public void setDeliveryBuildingRoomNumber(String deliveryBuildingRoomNumber) {
592         this.deliveryBuildingRoomNumber = deliveryBuildingRoomNumber;
593     }
594 
595     public String getDeliveryCityName() {
596         return deliveryCityName;
597     }
598 
599     public void setDeliveryCityName(String deliveryCityName) {
600         this.deliveryCityName = deliveryCityName;
601     }
602 
603     public String getDeliveryStateCode() {
604         return deliveryStateCode;
605     }
606 
607     public void setDeliveryStateCode(String deliveryStateCode) {
608         this.deliveryStateCode = deliveryStateCode;
609     }
610 
611     public String getDeliveryPostalCode() {
612         return deliveryPostalCode;
613     }
614 
615     public void setDeliveryPostalCode(String deliveryPostalCode) {
616         this.deliveryPostalCode = deliveryPostalCode;
617     }
618 
619     public String getDeliveryCountryCode() {
620         return deliveryCountryCode;
621     }
622 
623     public void setDeliveryCountryCode(String deliveryCountryCode) {
624         this.deliveryCountryCode = deliveryCountryCode;
625     }
626 
627     public String getVendorCustomerNumber() {
628         return vendorCustomerNumber;
629     }
630 
631     public void setVendorCustomerNumber(String vendorCustomerNumber) {
632         this.vendorCustomerNumber = vendorCustomerNumber;
633     }
634 
635     public String getPurchaseOrderTransmissionMethodCode() {
636         return purchaseOrderTransmissionMethodCode;
637     }
638 
639     public void setPurchaseOrderTransmissionMethodCode(String purchaseOrderTransmissionMethodCode) {
640         this.purchaseOrderTransmissionMethodCode = purchaseOrderTransmissionMethodCode;
641     }
642 
643     public String getPurchaseOrderCostSourceCode() {
644         return purchaseOrderCostSourceCode;
645     }
646 
647     public void setPurchaseOrderCostSourceCode(String purchaseOrderCostSourceCode) {
648         this.purchaseOrderCostSourceCode = purchaseOrderCostSourceCode;
649     }
650 
651     public String getRequestorPersonName() {
652         return requestorPersonName;
653     }
654 
655     public void setRequestorPersonName(String requestorPersonName) {
656         this.requestorPersonName = requestorPersonName;
657     }
658 
659     public String getRequestorPersonEmailAddress() {
660         return requestorPersonEmailAddress;
661     }
662 
663     public void setRequestorPersonEmailAddress(String requestorPersonEmailAddress) {
664         this.requestorPersonEmailAddress = requestorPersonEmailAddress;
665     }
666 
667     public String getRequestorPersonPhoneNumber() {
668         return requestorPersonPhoneNumber;
669     }
670 
671     public void setRequestorPersonPhoneNumber(String requestorPersonPhoneNumber) {
672         this.requestorPersonPhoneNumber = requestorPersonPhoneNumber;
673     }
674 
675     public String getFinancialYear() {
676         return financialYear;
677     }
678 
679     public void setFinancialYear(String financialYear) {
680         this.financialYear = financialYear;
681     }
682 
683     public String getDateOfPublication() {
684         return dateOfPublication;
685     }
686 
687     public void setDateOfPublication(String dateOfPublication) {
688         this.dateOfPublication = dateOfPublication;
689     }
690 
691     public String getPhysicalDescription() {
692         return physicalDescription;
693     }
694 
695     public void setPhysicalDescription(String physicalDescription) {
696         this.physicalDescription = physicalDescription;
697     }
698 
699     public String getFormat() {
700         return format;
701     }
702 
703     public void setFormat(String format) {
704         this.format = format;
705     }
706 
707     public String getSubjects() {
708         return subjects;
709     }
710 
711     public void setSubjects(String subjects) {
712         this.subjects = subjects;
713     }
714 
715     public String getPrice() {
716         return price;
717     }
718 
719     public void setPrice(String price) {
720         this.price = price;
721     }
722 
723     public String getNoOfCopies() {
724         return noOfCopies;
725     }
726 
727     public void setNoOfCopies(String noOfCopies) {
728         this.noOfCopies = noOfCopies;
729     }
730 
731     public String getRequestorContact() {
732         return requestorContact;
733     }
734 
735     public void setRequestorContact(String requestorContact) {
736         this.requestorContact = requestorContact;
737     }
738 
739     public String getRequestorType() {
740         return requestorType;
741     }
742 
743     public void setRequestorType(String requestorType) {
744         this.requestorType = requestorType;
745     }
746 
747     public String getRequestersNotes() {
748         return requestersNotes;
749     }
750 
751     public void setRequestersNotes(String requestersNotes) {
752         this.requestersNotes = requestersNotes;
753     }
754 
755     public String getSelector() {
756         return selector;
757     }
758 
759     public void setSelector(String selector) {
760         this.selector = selector;
761     }
762 
763     public String getSelectorNotes() {
764         return selectorNotes;
765     }
766 
767     public void setSelectorNotes(String selectorNotes) {
768         this.selectorNotes = selectorNotes;
769     }
770 
771     public String getUom() {
772         return uom;
773     }
774 
775     public void setUom(String uom) {
776         this.uom = uom;
777     }
778 
779     public String getChart() {
780         return chart;
781     }
782 
783     public void setChart(String chart) {
784         this.chart = chart;
785     }
786 
787     public String getObjectCode() {
788         return objectCode;
789     }
790 
791     public void setObjectCode(String objectCode) {
792         this.objectCode = objectCode;
793     }
794 
795     public Long getPercent() {
796         return percent;
797     }
798 
799     public void setPercent(Long percent) {
800         this.percent = percent;
801     }
802 
803     public String getChartOfAccountsCode() {
804         return chartOfAccountsCode;
805     }
806 
807     public void setChartOfAccountsCode(String chartOfAccountsCode) {
808         this.chartOfAccountsCode = chartOfAccountsCode;
809     }
810 
811     public String getOrganizationCode() {
812         return organizationCode;
813     }
814 
815     public void setOrganizationCode(String organizationCode) {
816         this.organizationCode = organizationCode;
817     }
818 
819     public String getDocumentFundingSourceCode() {
820         return documentFundingSourceCode;
821     }
822 
823     public void setDocumentFundingSourceCode(String documentFundingSourceCode) {
824         this.documentFundingSourceCode = documentFundingSourceCode;
825     }
826 
827     public boolean isUseTaxIndicator() {
828         return useTaxIndicator;
829     }
830 
831     public void setUseTaxIndicator(boolean useTaxIndicator) {
832         this.useTaxIndicator = useTaxIndicator;
833     }
834 
835     public boolean isDeliveryBuildingOtherIndicator() {
836         return deliveryBuildingOtherIndicator;
837     }
838 
839     public void setDeliveryBuildingOtherIndicator(boolean deliveryBuildingOtherIndicator) {
840         this.deliveryBuildingOtherIndicator = deliveryBuildingOtherIndicator;
841     }
842 
843     public String getOrganizationAutomaticPurchaseOrderLimit() {
844         return organizationAutomaticPurchaseOrderLimit;
845     }
846 
847     public void setOrganizationAutomaticPurchaseOrderLimit(String organizationAutomaticPurchaseOrderLimit) {
848         this.organizationAutomaticPurchaseOrderLimit = organizationAutomaticPurchaseOrderLimit;
849     }
850 
851     public boolean isPurchaseOrderAutomaticIndicator() {
852         return purchaseOrderAutomaticIndicator;
853     }
854 
855     public void setPurchaseOrderAutomaticIndicator(boolean purchaseOrderAutomaticIndicator) {
856         this.purchaseOrderAutomaticIndicator = purchaseOrderAutomaticIndicator;
857     }
858 
859     public boolean isReceivingDocumentRequiredIndicator() {
860         return receivingDocumentRequiredIndicator;
861     }
862 
863     public void setReceivingDocumentRequiredIndicator(boolean receivingDocumentRequiredIndicator) {
864         this.receivingDocumentRequiredIndicator = receivingDocumentRequiredIndicator;
865     }
866 
867     public boolean isPaymentRequestPositiveApprovalIndicator() {
868         return paymentRequestPositiveApprovalIndicator;
869     }
870 
871     public void setPaymentRequestPositiveApprovalIndicator(boolean paymentRequestPositiveApprovalIndicator) {
872         this.paymentRequestPositiveApprovalIndicator = paymentRequestPositiveApprovalIndicator;
873     }
874 
875     public String getItemTypeCode() {
876         return itemTypeCode;
877     }
878 
879     public void setItemTypeCode(String itemTypeCode) {
880         this.itemTypeCode = itemTypeCode;
881     }
882 
883     public String getRequestor() {
884         return requestor;
885     }
886 
887     public void setRequestor(String requestor) {
888         this.requestor = requestor;
889     }
890 
891     public String getRequestorsFirstName() {
892         return requestorsFirstName;
893     }
894 
895     public void setRequestorsFirstName(String requestorsFirstName) {
896         this.requestorsFirstName = requestorsFirstName;
897     }
898 
899     public String getRequestorsLastName() {
900         return requestorsLastName;
901     }
902 
903     public void setRequestorsLastName(String requestorsLastName) {
904         this.requestorsLastName = requestorsLastName;
905     }
906 
907     public String getRequestorsAddress1() {
908         return requestorsAddress1;
909     }
910 
911     public void setRequestorsAddress1(String requestorsAddress1) {
912         this.requestorsAddress1 = requestorsAddress1;
913     }
914 
915     public String getRequestorsAddress2() {
916         return requestorsAddress2;
917     }
918 
919     public void setRequestorsAddress2(String requestorsAddress2) {
920         this.requestorsAddress2 = requestorsAddress2;
921     }
922 
923     public String getRequestorsCity() {
924         return requestorsCity;
925     }
926 
927     public void setRequestorsCity(String requestorsCity) {
928         this.requestorsCity = requestorsCity;
929     }
930 
931     public String getRequestorsState() {
932         return requestorsState;
933     }
934 
935     public void setRequestorsState(String requestorsState) {
936         this.requestorsState = requestorsState;
937     }
938 
939     public String getRequestorsZipCode() {
940         return requestorsZipCode;
941     }
942 
943     public void setRequestorsZipCode(String requestorsZipCode) {
944         this.requestorsZipCode = requestorsZipCode;
945     }
946 
947     public String getRequestorsCountryCode() {
948         return requestorsCountryCode;
949     }
950 
951     public void setRequestorsCountryCode(String requestorsCountryCode) {
952         this.requestorsCountryCode = requestorsCountryCode;
953     }
954 
955     public String getRequestorsPhone() {
956         return requestorsPhone;
957     }
958 
959     public void setRequestorsPhone(String requestorsPhone) {
960         this.requestorsPhone = requestorsPhone;
961     }
962 
963     public String getRequestorsEmail() {
964         return requestorsEmail;
965     }
966 
967     public void setRequestorsEmail(String requestorsEmail) {
968         this.requestorsEmail = requestorsEmail;
969     }
970 
971     public String getRequestorsSMS() {
972         return requestorsSMS;
973     }
974 
975     public void setRequestorsSMS(String requestorsSMS) {
976         this.requestorsSMS = requestorsSMS;
977     }
978 
979     public String getSeriesOfStatement() {
980         return seriesOfStatement;
981     }
982 
983     public void setSeriesOfStatement(String seriesOfStatement) {
984         this.seriesOfStatement = seriesOfStatement;
985     }
986 
987     public String getFundCode() {
988         return fundCode;
989     }
990 
991     public void setFundCode(String fundCode) {
992         this.fundCode = fundCode;
993     }
994 
995 
996     protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
997         // TODO Auto-generated method stub
998         return null;
999     }
1000 
1001     public void refresh() {
1002         // TODO Auto-generated method stub
1003 
1004     }
1005 
1006 
1007     public String getPurchaseOrderType() {
1008         return purchaseOrderType;
1009     }
1010 
1011     public void setPurchaseOrderType(String purchaseOrderType) {
1012         this.purchaseOrderType = purchaseOrderType;
1013     }
1014 
1015 
1016     public String getBillingName() {
1017         return billingName;
1018     }
1019 
1020     public void setBillingName(String billingName) {
1021         this.billingName = billingName;
1022     }
1023 
1024     public String getBillingLine1Address() {
1025         return billingLine1Address;
1026     }
1027 
1028     public void setBillingLine1Address(String billingLine1Address) {
1029         this.billingLine1Address = billingLine1Address;
1030     }
1031 
1032     public String getBillingCityName() {
1033         return billingCityName;
1034     }
1035 
1036     public void setBillingCityName(String billingCityName) {
1037         this.billingCityName = billingCityName;
1038     }
1039 
1040     public String getBillingStateCode() {
1041         return billingStateCode;
1042     }
1043 
1044     public void setBillingStateCode(String billingStateCode) {
1045         this.billingStateCode = billingStateCode;
1046     }
1047 
1048     public String getBillingPostalCode() {
1049         return billingPostalCode;
1050     }
1051 
1052     public void setBillingPostalCode(String billingPostalCode) {
1053         this.billingPostalCode = billingPostalCode;
1054     }
1055 
1056     public String getBillingPhoneNumber() {
1057         return billingPhoneNumber;
1058     }
1059 
1060     public void setBillingPhoneNumber(String billingPhoneNumber) {
1061         this.billingPhoneNumber = billingPhoneNumber;
1062     }
1063 
1064     public String getBillingCountryCode() {
1065         return billingCountryCode;
1066     }
1067 
1068     public void setBillingCountryCode(String billingCountryCode) {
1069         this.billingCountryCode = billingCountryCode;
1070     }
1071 
1072     public String getDocStoreOperation() {
1073         return docStoreOperation;
1074     }
1075 
1076     public void setDocStoreOperation(String docStoreOperation) {
1077         this.docStoreOperation = docStoreOperation;
1078     }
1079 
1080     public String getDocCategoryType() {
1081         return docCategoryType;
1082     }
1083 
1084     public void setDocCategoryType(String docCategoryType) {
1085         this.docCategoryType = docCategoryType;
1086     }
1087 
1088     public String getDocCategoryUUID() {
1089         return docCategoryUUID;
1090     }
1091 
1092     public void setDocCategoryUUID(String docCategoryUUID) {
1093         this.docCategoryUUID = docCategoryUUID;
1094     }
1095 
1096     /**
1097      * Returns Requestors firstname, lastname initials in lowercase
1098      *
1099      * @return operatorInitials
1100      */
1101     public String getOperatorInitials() {
1102         StringBuffer operatorInitials = new StringBuffer();
1103         if (!StringUtils.isEmpty(this.requestorsFirstName))
1104             operatorInitials.append(this.requestorsFirstName.toLowerCase().charAt(0));
1105         if (!StringUtils.isEmpty(this.requestorsLastName))
1106             operatorInitials.append(this.requestorsLastName.toLowerCase().charAt(0));
1107         return operatorInitials.toString();
1108     }
1109 
1110     public void setOperatorInitials(String operatorInitials) {
1111         this.operatorInitials = operatorInitials;
1112     }
1113 
1114     public String getLeader() {
1115         return leader;
1116     }
1117 
1118     public void setLeader(String leader) {
1119         this.leader = leader;
1120     }
1121 
1122     public String getControlField() {
1123         return controlField;
1124     }
1125 
1126     public void setControlField(String controlField) {
1127         this.controlField = controlField;
1128     }
1129 
1130     public String getRequisitionSource() {
1131         return requisitionSource;
1132     }
1133 
1134     public void setRequisitionSource(String requisitionSource) {
1135         this.requisitionSource = requisitionSource;
1136     }
1137 
1138     public String getDocStoreIngestionId() {
1139         return docStoreIngestionId;
1140     }
1141 
1142     public void setDocStoreIngestionId(String docStoreIngestionId) {
1143         this.docStoreIngestionId = docStoreIngestionId;
1144     }
1145 
1146     /*public boolean isLicensingRequirementIndicator() {
1147         return licensingRequirementIndicator;
1148     }
1149 
1150     public void setLicensingRequirementIndicator(boolean licensingRequirementIndicator) {
1151         this.licensingRequirementIndicator = licensingRequirementIndicator;
1152     }*/
1153 
1154    /* public String getLicensingRequirementCode() {
1155         return licensingRequirementCode;
1156     }
1157 
1158     public void setLicensingRequirementCode(String licensingRequirementCode) {
1159         this.licensingRequirementCode = licensingRequirementCode;
1160     }   */
1161 
1162     /**
1163      * Gets the requestorId attribute.
1164      *
1165      * @return Returns the requestorId.
1166      */
1167     public String getRequestorId() {
1168         return requestorId;
1169     }
1170 
1171     /**
1172      * Sets the requestorId attribute value.
1173      *
1174      * @param requestorId The requestorId to set.
1175      */
1176     public void setRequestorId(String requestorId) {
1177         this.requestorId = requestorId;
1178     }
1179 
1180 }