001package org.kuali.ole.describe.bo; 002 003import org.kuali.ole.docstore.common.document.ItemOleml; 004import org.kuali.ole.select.document.OLEEResourceLicense; 005 006import java.util.ArrayList; 007import java.util.List; 008 009/** 010 * Created with IntelliJ IDEA. 011 * User: venkatasrinathy 012 * Date: 12/27/13 013 * Time: 2:40 PM 014 * To change this template use File | Settings | File Templates. 015 */ 016public class OleExtendedEHoldingFields { 017 018 private String relatedHoldingIdentifier; 019 private String paymentStatus; 020 private String purchaseOrderId; 021 private String vendorName; 022 private String orderType; 023 private String currentFYCost; 024 private String orderFormat; 025 private String fundCode; 026 private List<String> accessLocation = new ArrayList<String>(); 027 private List<OLEEResourceLicense> license = new ArrayList<>(); 028 029 public String getRelatedHoldingIdentifier() { 030 return relatedHoldingIdentifier; 031 } 032 033 public void setRelatedHoldingIdentifier(String relatedHoldingIdentifier) { 034 this.relatedHoldingIdentifier = relatedHoldingIdentifier; 035 } 036 037 public String getPaymentStatus() { 038 return paymentStatus; 039 } 040 041 public void setPaymentStatus(String paymentStatus) { 042 this.paymentStatus = paymentStatus; 043 } 044 045 public String getPurchaseOrderId() { 046 return purchaseOrderId; 047 } 048 049 public void setPurchaseOrderId(String purchaseOrderId) { 050 this.purchaseOrderId = purchaseOrderId; 051 } 052 053 public String getVendorName() { 054 return vendorName; 055 } 056 057 public void setVendorName(String vendorName) { 058 this.vendorName = vendorName; 059 } 060 061 public String getOrderType() { 062 return orderType; 063 } 064 065 public void setOrderType(String orderType) { 066 this.orderType = orderType; 067 } 068 069 public String getCurrentFYCost() { 070 return currentFYCost; 071 } 072 073 public void setCurrentFYCost(String currentFYCost) { 074 this.currentFYCost = currentFYCost; 075 } 076 077 public String getOrderFormat() { 078 return orderFormat; 079 } 080 081 public void setOrderFormat(String orderFormat) { 082 this.orderFormat = orderFormat; 083 } 084 085 public String getFundCode() { 086 return fundCode; 087 } 088 089 public void setFundCode(String fundCode) { 090 this.fundCode = fundCode; 091 } 092 093 public List<String> getAccessLocation() { 094 return accessLocation; 095 } 096 097 public void setAccessLocation(List<String> accessLocation) { 098 this.accessLocation = accessLocation; 099 } 100 101 public List<OLEEResourceLicense> getLicense() { 102 return license; 103 } 104 105 public void setLicense(List<OLEEResourceLicense> license) { 106 this.license = license; 107 } 108}