001package org.kuali.ole.deliver.bo; 002 003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 004 005import java.sql.Timestamp; 006import java.util.Date; 007 008/** 009 * Created with IntelliJ IDEA. 010 * User: ? 011 * Date: 10/26/12 012 * Time: 7:22 PM 013 * To change this template use File | Settings | File Templates. 014 */ 015public class OleTemporaryCirculationHistory extends PersistableBusinessObjectBase { 016 017 private String temporaryCirculationHistoryId; 018 private String olePatronId; 019 private String itemId; 020 private String circulationLocationId; 021 private String circulationLocationCode; 022 private Timestamp checkInDate; 023 private String callNumber; 024 private String copyNumber; 025 private String shelvingLocation; 026 private String volumeNumber; 027 private String itemStatus; 028 private String title; 029 private String author; 030 private String itemType; 031 private String itemUuid; 032 private Timestamp dueDate; 033 private Date checkOutDate; 034 035 public String getCirculationLocationCode() { 036 return circulationLocationCode; 037 } 038 039 public void setCirculationLocationCode(String circulationLocationCode) { 040 this.circulationLocationCode = circulationLocationCode; 041 } 042 043 public String getItemUuid() { 044 return itemUuid; 045 } 046 047 public void setItemUuid(String itemUuid) { 048 this.itemUuid = itemUuid; 049 } 050 051 public String getTemporaryCirculationHistoryId() { 052 return temporaryCirculationHistoryId; 053 } 054 055 public void setTemporaryCirculationHistoryId(String temporaryCirculationHistoryId) { 056 this.temporaryCirculationHistoryId = temporaryCirculationHistoryId; 057 } 058 059 public String getOlePatronId() { 060 return olePatronId; 061 } 062 063 public void setOlePatronId(String olePatronId) { 064 this.olePatronId = olePatronId; 065 } 066 067 public String getItemId() { 068 return itemId; 069 } 070 071 public void setItemId(String itemId) { 072 this.itemId = itemId; 073 } 074 075 public String getCirculationLocationId() { 076 return circulationLocationId; 077 } 078 079 public void setCirculationLocationId(String circulationLocationId) { 080 this.circulationLocationId = circulationLocationId; 081 } 082 083 public Timestamp getCheckInDate() { 084 return checkInDate; 085 } 086 087 public void setCheckInDate(Timestamp checkInDate) { 088 this.checkInDate = checkInDate; 089 } 090 091 public String getCallNumber() { 092 return callNumber; 093 } 094 095 public void setCallNumber(String callNumber) { 096 this.callNumber = callNumber; 097 } 098 099 public String getCopyNumber() { 100 return copyNumber; 101 } 102 103 public void setCopyNumber(String copyNumber) { 104 this.copyNumber = copyNumber; 105 } 106 107 public String getShelvingLocation() { 108 return shelvingLocation; 109 } 110 111 public void setShelvingLocation(String shelvingLocation) { 112 this.shelvingLocation = shelvingLocation; 113 } 114 115 public String getVolumeNumber() { 116 return volumeNumber; 117 } 118 119 public void setVolumeNumber(String volumeNumber) { 120 this.volumeNumber = volumeNumber; 121 } 122 123 public String getItemStatus() { 124 return itemStatus; 125 } 126 127 public void setItemStatus(String itemStatus) { 128 this.itemStatus = itemStatus; 129 } 130 131 public String getTitle() { 132 return title; 133 } 134 135 public void setTitle(String title) { 136 this.title = title; 137 } 138 139 public String getAuthor() { 140 return author; 141 } 142 143 public void setAuthor(String author) { 144 this.author = author; 145 } 146 147 public String getItemType() { 148 return itemType; 149 } 150 151 public void setItemType(String itemType) { 152 this.itemType = itemType; 153 } 154 155 public Timestamp getDueDate() { 156 return dueDate; 157 } 158 159 public void setDueDate(Timestamp dueDate) { 160 this.dueDate = dueDate; 161 } 162 163 public Date getCheckOutDate() { 164 return checkOutDate; 165 } 166 167 public void setCheckOutDate(Date checkOutDate) { 168 this.checkOutDate = checkOutDate; 169 } 170}