001package org.kuali.ole.deliver.bo; 002 003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 004 005/** 006 * Created with IntelliJ IDEA. 007 * User: aurojyotit 008 * Date: 1/13/14 009 * Time: 2:40 PM 010 * To change this template use File | Settings | File Templates. 011 */ 012public class OLEFlaggedItems extends PersistableBusinessObjectBase { 013 private String title; 014 private String barcode; 015 private String callNumber; 016 private String copyNumber; 017 private String flagType; 018 private String flagNote; 019 private String location; 020 021 private boolean claimsReturned; 022 private boolean damaged; 023 private boolean missingPiece; 024 025 private String claimsReturnedNote; 026 private String damagedNote; 027 private String missingPieceNote; 028 029 private String itemUuid; 030 private String instanceUuid; 031 private String bibUuid; 032 033 private String patronId; 034 private String patronNote; 035 private String PatronNoteId; 036 private String patronFlagType; 037 private String patronBarcode; 038 private String patronName; 039 040 public String getTitle() { 041 return title; 042 } 043 044 public void setTitle(String title) { 045 this.title = title; 046 } 047 048 public String getBarcode() { 049 return barcode; 050 } 051 052 public void setBarcode(String barcode) { 053 this.barcode = barcode; 054 } 055 056 public String getCallNumber() { 057 return callNumber; 058 } 059 060 public void setCallNumber(String callNumber) { 061 this.callNumber = callNumber; 062 } 063 064 public String getCopyNumber() { 065 return copyNumber; 066 } 067 068 public void setCopyNumber(String copyNumber) { 069 this.copyNumber = copyNumber; 070 } 071 072 public String getFlagType() { 073 return flagType; 074 } 075 076 public void setFlagType(String flagType) { 077 this.flagType = flagType; 078 } 079 080 public String getFlagNote() { 081 return flagNote; 082 } 083 084 public void setFlagNote(String flagNote) { 085 this.flagNote = flagNote; 086 } 087 088 public boolean isClaimsReturned() { 089 return claimsReturned; 090 } 091 092 public void setClaimsReturned(boolean claimsReturned) { 093 this.claimsReturned = claimsReturned; 094 } 095 096 public boolean isDamaged() { 097 return damaged; 098 } 099 100 public void setDamaged(boolean damaged) { 101 this.damaged = damaged; 102 } 103 104 public boolean isMissingPiece() { 105 return missingPiece; 106 } 107 108 public void setMissingPiece(boolean missingPiece) { 109 this.missingPiece = missingPiece; 110 } 111 112 public String getClaimsReturnedNote() { 113 return claimsReturnedNote; 114 } 115 116 public void setClaimsReturnedNote(String claimsReturnedNote) { 117 this.claimsReturnedNote = claimsReturnedNote; 118 } 119 120 public String getDamagedNote() { 121 return damagedNote; 122 } 123 124 public void setDamagedNote(String damagedNote) { 125 this.damagedNote = damagedNote; 126 } 127 128 public String getMissingPieceNote() { 129 return missingPieceNote; 130 } 131 132 public void setMissingPieceNote(String missingPieceNote) { 133 this.missingPieceNote = missingPieceNote; 134 } 135 136 public String getLocation() { 137 return location; 138 } 139 140 public void setLocation(String location) { 141 this.location = location; 142 } 143 144 public String getItemUuid() { 145 return itemUuid; 146 } 147 148 public void setItemUuid(String itemUuid) { 149 this.itemUuid = itemUuid; 150 } 151 152 public String getInstanceUuid() { 153 return instanceUuid; 154 } 155 156 public void setInstanceUuid(String instanceUuid) { 157 this.instanceUuid = instanceUuid; 158 } 159 160 public String getBibUuid() { 161 return bibUuid; 162 } 163 164 public void setBibUuid(String bibUuid) { 165 this.bibUuid = bibUuid; 166 } 167 168 public String getPatronId() { 169 return patronId; 170 } 171 172 public void setPatronId(String patronId) { 173 this.patronId = patronId; 174 } 175 176 public String getPatronNote() { 177 return patronNote; 178 } 179 180 public void setPatronNote(String patronNote) { 181 this.patronNote = patronNote; 182 } 183 184 public String getPatronNoteId() { 185 return PatronNoteId; 186 } 187 188 public void setPatronNoteId(String patronNoteId) { 189 PatronNoteId = patronNoteId; 190 } 191 192 public String getPatronFlagType() { 193 return patronFlagType; 194 } 195 196 public void setPatronFlagType(String patronFlagType) { 197 this.patronFlagType = patronFlagType; 198 } 199 200 public String getPatronBarcode() { 201 return patronBarcode; 202 } 203 204 public void setPatronBarcode(String patronBarcode) { 205 this.patronBarcode = patronBarcode; 206 } 207 208 public String getPatronName() { 209 return patronName; 210 } 211 212 public void setPatronName(String patronName) { 213 this.patronName = patronName; 214 } 215}