001package org.kuali.ole.deliver.bo;
002
003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004
005/**
006 * Created with IntelliJ IDEA.
007 * User: maheswarang
008 * Date: 1/22/14
009 * Time: 4:32 PM
010 * To change this template use File | Settings | File Templates.
011 */
012public class ASRItem extends PersistableBusinessObjectBase {
013    private String id;
014    private String itemBarcode;
015    private String title;
016    private String author;
017    private String callNumber;
018
019    public String getId() {
020        return id;
021    }
022
023    public void setId(String id) {
024        this.id = id;
025    }
026
027    public String getItemBarcode() {
028        return itemBarcode;
029    }
030
031    public void setItemBarcode(String itemBarcode) {
032        this.itemBarcode = itemBarcode;
033    }
034
035    public String getTitle() {
036        return title;
037    }
038
039    public void setTitle(String title) {
040        this.title = title;
041    }
042
043    public String getAuthor() {
044        return author;
045    }
046
047    public void setAuthor(String author) {
048        this.author = author;
049    }
050
051    public String getCallNumber() {
052        return callNumber;
053    }
054
055    public void setCallNumber(String callNumber) {
056        this.callNumber = callNumber;
057    }
058}