001package org.kuali.ole.docstore.model.bo; 002 003import java.util.List; 004 005/** 006 * Created by IntelliJ IDEA. 007 * User: Pranitha 008 * Date: 3/30/12 009 * Time: 10:43 AM 010 * To change this template use File | Settings | File Templates. 011 */ 012public class WorkItemDocument extends OleDocument { 013 private String localId; 014 private String itemIdentifier; 015 private String bibIdentifier; 016 private String callNumber; 017 private String location; 018 private String shelvingOrder; 019 private String barcode; 020 private String copyNumber; 021 private String enumeration; 022 private String chronology; 023 private String locationName; 024 private String itemType; 025 private String instanceIdentifier; 026 private String volumeNumber; 027 private String itemStatus; 028 private String callNumberPrefix; 029 private String callNumberType; 030 private String bibTitle; 031 private String linkedBibCount; 032 private List<String> bibUUIDList; 033 private String staffOnlyFlag; 034 protected String dateEntered; 035 protected String dateUpdated; 036 protected String createdBy; 037 protected String updatedBy; 038 039 public String getDateEntered() { 040 return dateEntered; 041 } 042 043 public void setDateEntered(String dateEntered) { 044 this.dateEntered = dateEntered; 045 } 046 047 public String getDateUpdated() { 048 return dateUpdated; 049 } 050 051 public void setDateUpdated(String dateUpdated) { 052 this.dateUpdated = dateUpdated; 053 } 054 055 public String getUpdatedBy() { 056 return updatedBy; 057 } 058 059 public void setUpdatedBy(String updatedBy) { 060 this.updatedBy = updatedBy; 061 } 062 063 public String getCreatedBy() { 064 return createdBy; 065 } 066 067 public void setCreatedBy(String createdBy) { 068 this.createdBy = createdBy; 069 } 070 071 public String getLocalId() { 072 return localId; 073 } 074 075 public void setLocalId(String localId) { 076 this.localId = localId; 077 } 078 079 080 public String getStaffOnlyFlag() { 081 return staffOnlyFlag; 082 } 083 084 public void setStaffOnlyFlag(String staffOnlyFlag) { 085 this.staffOnlyFlag = staffOnlyFlag; 086 } 087 088 public String getLocationName() { 089 return locationName; 090 } 091 092 public void setLocationName(String locationName) { 093 this.locationName = locationName; 094 } 095 096 public String getItemType() { 097 return itemType; 098 } 099 100 public void setItemType(String itemType) { 101 this.itemType = itemType; 102 } 103 104 public String getVolumeNumber() { 105 return volumeNumber; 106 } 107 108 public void setVolumeNumber(String volumeNumber) { 109 this.volumeNumber = volumeNumber; 110 } 111 112 public String getCallNumberPrefix() { 113 return callNumberPrefix; 114 } 115 116 public void setCallNumberPrefix(String callNumberPrefix) { 117 this.callNumberPrefix = callNumberPrefix; 118 } 119 120 public String getCallNumberType() { 121 return callNumberType; 122 } 123 124 public void setCallNumberType(String callNumberType) { 125 this.callNumberType = callNumberType; 126 } 127 128 public String getItemStatus() { 129 return itemStatus; 130 } 131 132 public void setItemStatus(String itemStatus) { 133 this.itemStatus = itemStatus; 134 } 135 136 public String getItemIdentifier() { 137 return itemIdentifier; 138 } 139 140 public void setItemIdentifier(String itemIdentifier) { 141 this.itemIdentifier = itemIdentifier; 142 } 143 144 public String getBibIdentifier() { 145 return bibIdentifier; 146 } 147 148 public void setBibIdentifier(String bibIdentifier) { 149 this.bibIdentifier = bibIdentifier; 150 } 151 152 public String getCallNumber() { 153 return callNumber; 154 } 155 156 public void setCallNumber(String callNumber) { 157 this.callNumber = callNumber; 158 } 159 160 public String getLocation() { 161 return location; 162 } 163 164 public String getShelvingOrder() { 165 return shelvingOrder; 166 } 167 168 public void setShelvingOrder(String shelvingOrder) { 169 this.shelvingOrder = shelvingOrder; 170 } 171 172 public void setLocation(String location) { 173 this.location = location; 174 } 175 176 public String getBarcode() { 177 return barcode; 178 } 179 180 public void setBarcode(String barcode) { 181 this.barcode = barcode; 182 } 183 184 public String getCopyNumber() { 185 return copyNumber; 186 } 187 188 public void setCopyNumber(String copyNumber) { 189 this.copyNumber = copyNumber; 190 } 191 192 public String getEnumeration() { 193 return enumeration; 194 } 195 196 public void setEnumeration(String enumeration) { 197 this.enumeration = enumeration; 198 } 199 200 public String getChronology() { 201 return chronology; 202 } 203 204 public void setChronology(String chronology) { 205 this.chronology = chronology; 206 } 207 208 public String getInstanceIdentifier() { 209 return instanceIdentifier; 210 } 211 212 public void setInstanceIdentifier(String instanceIdentifier) { 213 this.instanceIdentifier = instanceIdentifier; 214 } 215 216 public String getBibTitle() { 217 return bibTitle; 218 } 219 220 public void setBibTitle(String bibTitle) { 221 this.bibTitle = bibTitle; 222 } 223 224 public String getLinkedBibCount() { 225 return linkedBibCount; 226 } 227 228 public void setLinkedBibCount(String linkedBibCount) { 229 this.linkedBibCount = linkedBibCount; 230 } 231 232 public List<String> getBibUUIDList() { 233 return bibUUIDList; 234 } 235 236 public void setBibUUIDList(List<String> bibUUIDList) { 237 this.bibUUIDList = bibUUIDList; 238 } 239 240 @Override 241 public String toString() { 242 return "WorkItemDocument{" + 243 "localId='" + localId + '\'' + 244 ", dateEntered=" + dateEntered + 245 ", dateUpdated=" + dateUpdated + 246 ", createdBy=" + createdBy + 247 ", updatedBy=" + updatedBy + 248 ", itemIdentifier='" + itemIdentifier + '\'' + 249 ", bibIdentifier='" + bibIdentifier + '\'' + 250 ", callNumber='" + callNumber + '\'' + 251 ", location='" + location + '\'' + 252 ", shelvingOrder='" + shelvingOrder + '\'' + 253 ", barcode='" + barcode + '\'' + 254 ", copyNumber='" + copyNumber + '\'' + 255 ", enumeration='" + enumeration + '\'' + 256 ", chronology='" + chronology + '\'' + 257 ", locationName='" + locationName + '\'' + 258 ", itemType='" + itemType + '\'' + 259 ", instanceIdentifier='" + instanceIdentifier + '\'' + 260 ", volumeNumber='" + volumeNumber + '\'' + 261 ", itemStatus='" + itemStatus + '\'' + 262 ", callNumberPrefix='" + callNumberPrefix + '\'' + 263 ", callNumberType='" + callNumberType + '\'' + 264 ", bibTitle='" + bibTitle + '\'' + 265 ", linkedBibCount='" + linkedBibCount + '\'' + 266 ", bibUUIDList=" + bibUUIDList + 267 '}'; 268 } 269}