001 package org.kuali.ole.deliver.loan.bo;
002
003 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004
005 /**
006 * Created with IntelliJ IDEA.
007 * User: ?
008 * Date: 10/3/12
009 * Time: 3:22 PM
010 * To change this template use File | Settings | File Templates.
011 */
012 public class OleLoanFastAdd extends PersistableBusinessObjectBase {
013
014 private String title;
015 private String locationName;
016 private String circulationLocation;
017 private String itemType;
018 private String callNumber;
019 private String labelForCopyNumber;
020 private String enumeration;
021 private String checkinNote;
022 private String note;
023 private String shelvingLocation;
024 private String barcode ;
025 private String itemStatus;
026 private String callNumberType;
027 private String copyNumber;
028 private String chronology;
029
030 public String getLocationName() {
031 return locationName;
032 }
033
034 public void setLocationName(String locationName) {
035 this.locationName = locationName;
036 }
037
038 public String getChronology() {
039 return chronology;
040 }
041
042 public void setChronology(String chronology) {
043 this.chronology = chronology;
044 }
045
046 public String getCopyNumber() {
047 return copyNumber;
048 }
049
050 public void setCopyNumber(String copyNumber) {
051 this.copyNumber = copyNumber;
052 }
053
054 public String getTitle() {
055 return title;
056 }
057
058 public void setTitle(String title) {
059 this.title = title;
060 }
061
062 public String getCirculationLocation() {
063 return circulationLocation;
064 }
065
066 public void setCirculationLocation(String circulationLocation) {
067 this.circulationLocation = circulationLocation;
068 }
069
070 public String getItemType() {
071 return itemType;
072 }
073
074 public void setItemType(String itemType) {
075 this.itemType = itemType;
076 }
077
078 public String getCallNumber() {
079 return callNumber;
080 }
081
082 public void setCallNumber(String callNumber) {
083 this.callNumber = callNumber;
084 }
085
086 public String getLabelForCopyNumber() {
087 return labelForCopyNumber;
088 }
089
090 public void setLabelForCopyNumber(String labelForCopyNumber) {
091 this.labelForCopyNumber = labelForCopyNumber;
092 }
093
094 public String getEnumeration() {
095 return enumeration;
096 }
097
098 public void setEnumeration(String enumeration) {
099 this.enumeration = enumeration;
100 }
101
102 public String getCheckinNote() {
103 return checkinNote;
104 }
105
106 public void setCheckinNote(String checkinNote) {
107 this.checkinNote = checkinNote;
108 }
109
110 public String getNote() {
111 return note;
112 }
113
114 public void setNote(String note) {
115 this.note = note;
116 }
117
118 public String getShelvingLocation() {
119 return shelvingLocation;
120 }
121
122 public void setShelvingLocation(String shelvingLocation) {
123 this.shelvingLocation = shelvingLocation;
124 }
125
126 public String getBarcode() {
127 return barcode;
128 }
129
130 public void setBarcode(String barcode) {
131 this.barcode = barcode;
132 }
133
134 public String getItemStatus() {
135 return itemStatus;
136 }
137
138 public void setItemStatus(String itemStatus) {
139 this.itemStatus = itemStatus;
140 }
141
142 public String getCallNumberType() {
143 return callNumberType;
144 }
145
146 public void setCallNumberType(String callNumberType) {
147 this.callNumberType = callNumberType;
148 }
149 }