001package org.kuali.ole.select.bo; 002 003import org.kuali.ole.select.businessobject.OlePurchaseOrderItem; 004import org.kuali.ole.select.document.OlePurchaseOrderDocument; 005import org.kuali.ole.select.lookup.DocData; 006import org.kuali.ole.vnd.businessobject.VendorTransmissionFormatDetail; 007 008/** 009 * Created with IntelliJ IDEA. 010 * User: vivekb 011 * Date: 1/18/14 012 * Time: 3:15 PM 013 * To change this template use File | Settings | File Templates. 014 */ 015public class OLEClaimingByTitle { 016 private String author; 017 private String title; 018 private String placeOfPublication; 019 private String publisherName; 020 private String publicationDate; 021 private String isxn; 022 private String vendorItemIdentifier; 023 private String poOrderedNum; 024 private String poOrderedDate; 025 private String claimNumber; 026 private String claimNote; 027 private OLEClaimingAddress toAddress; 028 private OLEClaimingAddress fromAddress; 029 private String poItemId; 030 031 private VendorTransmissionFormatDetail vendorTransmissionFormatDetail; 032 private String emailAddress; 033 034 public String getEmailAddress() { 035 return emailAddress; 036 } 037 038 public void setEmailAddress(String emailAddress) { 039 this.emailAddress = emailAddress; 040 } 041 042 043 public VendorTransmissionFormatDetail getVendorTransmissionFormatDetail() { 044 return vendorTransmissionFormatDetail; 045 } 046 047 public void setVendorTransmissionFormatDetail(VendorTransmissionFormatDetail vendorTransmissionFormatDetail) { 048 this.vendorTransmissionFormatDetail = vendorTransmissionFormatDetail; 049 } 050 051 public OLEClaimingByTitle() { 052 super(); 053 } 054 055 public String getPoItemId() { 056 return poItemId; 057 } 058 059 public void setPoItemId(String poItemId) { 060 this.poItemId = poItemId; 061 } 062 063 public OLEClaimingAddress getToAddress() { 064 return toAddress; 065 } 066 067 public void setToAddress(OLEClaimingAddress toAddress) { 068 this.toAddress = toAddress; 069 } 070 071 public OLEClaimingAddress getFromAddress() { 072 return fromAddress; 073 } 074 075 public void setFromAddress(OLEClaimingAddress fromAddress) { 076 this.fromAddress = fromAddress; 077 } 078 079 public String getTitle() { 080 return title; 081 } 082 083 public void setTitle(String title) { 084 this.title = title; 085 } 086 087 public String getAuthor() { 088 return author; 089 } 090 091 public void setAuthor(String author) { 092 this.author = author; 093 } 094 095 public String getPlaceOfPublication() { 096 return placeOfPublication; 097 } 098 099 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}