1 package org.kuali.ole.describe.bo;
2
3 import org.kuali.ole.docstore.common.document.ItemOleml;
4 import org.kuali.ole.select.document.OLEEResourceLicense;
5
6 import java.util.ArrayList;
7 import java.util.List;
8
9
10
11
12
13
14
15
16 public class OleExtendedEHoldingFields {
17
18 private String relatedHoldingIdentifier;
19 private String paymentStatus;
20 private String purchaseOrderId;
21 private String vendorName;
22 private String orderType;
23 private String currentFYCost;
24 private String orderFormat;
25 private String fundCode;
26 private List<String> accessLocation = new ArrayList<String>();
27 private List<OLEEResourceLicense> license = new ArrayList<>();
28
29 public String getRelatedHoldingIdentifier() {
30 return relatedHoldingIdentifier;
31 }
32
33 public void setRelatedHoldingIdentifier(String relatedHoldingIdentifier) {
34 this.relatedHoldingIdentifier = relatedHoldingIdentifier;
35 }
36
37 public String getPaymentStatus() {
38 return paymentStatus;
39 }
40
41 public void setPaymentStatus(String paymentStatus) {
42 this.paymentStatus = paymentStatus;
43 }
44
45 public String getPurchaseOrderId() {
46 return purchaseOrderId;
47 }
48
49 public void setPurchaseOrderId(String purchaseOrderId) {
50 this.purchaseOrderId = purchaseOrderId;
51 }
52
53 public String getVendorName() {
54 return vendorName;
55 }
56
57 public void setVendorName(String vendorName) {
58 this.vendorName = vendorName;
59 }
60
61 public String getOrderType() {
62 return orderType;
63 }
64
65 public void setOrderType(String orderType) {
66 this.orderType = orderType;
67 }
68
69 public String getCurrentFYCost() {
70 return currentFYCost;
71 }
72
73 public void setCurrentFYCost(String currentFYCost) {
74 this.currentFYCost = currentFYCost;
75 }
76
77 public String getOrderFormat() {
78 return orderFormat;
79 }
80
81 public void setOrderFormat(String orderFormat) {
82 this.orderFormat = orderFormat;
83 }
84
85 public String getFundCode() {
86 return fundCode;
87 }
88
89 public void setFundCode(String fundCode) {
90 this.fundCode = fundCode;
91 }
92
93 public List<String> getAccessLocation() {
94 return accessLocation;
95 }
96
97 public void setAccessLocation(List<String> accessLocation) {
98 this.accessLocation = accessLocation;
99 }
100
101 public List<OLEEResourceLicense> getLicense() {
102 return license;
103 }
104
105 public void setLicense(List<OLEEResourceLicense> license) {
106 this.license = license;
107 }
108 }