001package org.kuali.ole.deliver.bo;
002
003import 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 */
012public 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 callNumberPrefix;
020    private String labelForCopyNumber;
021    private String enumeration;
022    private String checkinNote;
023    private String note;
024    private String shelvingLocation;
025    private String barcode;
026    private String itemStatus;
027    private String callNumberType;
028    private String copyNumber;
029    private String chronology;
030    private String numberOfPieces;
031    private String author;
032
033    public String getAuthor() {
034        return author;
035    }
036
037    public void setAuthor(String author) {
038        this.author = author;
039    }
040
041    public String getNumberOfPieces() {
042        return numberOfPieces;
043    }
044
045    public void setNumberOfPieces(String numberOfPieces) {
046        this.numberOfPieces = numberOfPieces;
047    }
048
049    public String getLocationName() {
050        return locationName;
051    }
052
053    public void setLocationName(String locationName) {
054        this.locationName = locationName;
055    }
056
057    public String getChronology() {
058        return chronology;
059    }
060
061    public void setChronology(String chronology) {
062        this.chronology = chronology;
063    }
064
065    public String getCopyNumber() {
066        return copyNumber;
067    }
068
069    public void setCopyNumber(String copyNumber) {
070        this.copyNumber = copyNumber;
071    }
072
073    public String getTitle() {
074        return title;
075    }
076
077    public void setTitle(String title) {
078        this.title = title;
079    }
080
081    public String getCirculationLocation() {
082        return circulationLocation;
083    }
084
085    public void setCirculationLocation(String circulationLocation) {
086        this.circulationLocation = circulationLocation;
087    }
088
089    public String getItemType() {
090        return itemType;
091    }
092
093    public void setItemType(String itemType) {
094        this.itemType = itemType;
095    }
096
097    public String getCallNumber() {
098        return callNumber;
099    }
100
101    public void setCallNumber(String callNumber) {
102        this.callNumber = callNumber;
103    }
104
105    public String getLabelForCopyNumber() {
106        return labelForCopyNumber;
107    }
108
109    public void setLabelForCopyNumber(String labelForCopyNumber) {
110        this.labelForCopyNumber = labelForCopyNumber;
111    }
112
113    public String getEnumeration() {
114        return enumeration;
115    }
116
117    public void setEnumeration(String enumeration) {
118        this.enumeration = enumeration;
119    }
120
121    public String getCheckinNote() {
122        return checkinNote;
123    }
124
125    public void setCheckinNote(String checkinNote) {
126        this.checkinNote = checkinNote;
127    }
128
129    public String getNote() {
130        return note;
131    }
132
133    public void setNote(String note) {
134        this.note = note;
135    }
136
137    public String getShelvingLocation() {
138        return shelvingLocation;
139    }
140
141    public void setShelvingLocation(String shelvingLocation) {
142        this.shelvingLocation = shelvingLocation;
143    }
144
145    public String getBarcode() {
146        return barcode;
147    }
148
149    public void setBarcode(String barcode) {
150        this.barcode = barcode;
151    }
152
153    public String getItemStatus() {
154        return itemStatus;
155    }
156
157    public void setItemStatus(String itemStatus) {
158        this.itemStatus = itemStatus;
159    }
160
161    public String getCallNumberType() {
162        return callNumberType;
163    }
164
165    public void setCallNumberType(String callNumberType) {
166        this.callNumberType = callNumberType;
167    }
168
169    public String getCallNumberPrefix() {
170        return callNumberPrefix;
171    }
172
173    public void setCallNumberPrefix(String callNumberPrefix) {
174        this.callNumberPrefix = callNumberPrefix;
175    }
176}