View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: maheswarang
8    * Date: 1/22/14
9    * Time: 4:32 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class ASRItem extends PersistableBusinessObjectBase {
13      private String id;
14      private String itemBarcode;
15      private String title;
16      private String author;
17      private String callNumber;
18  
19      public String getId() {
20          return id;
21      }
22  
23      public void setId(String id) {
24          this.id = id;
25      }
26  
27      public String getItemBarcode() {
28          return itemBarcode;
29      }
30  
31      public void setItemBarcode(String itemBarcode) {
32          this.itemBarcode = itemBarcode;
33      }
34  
35      public String getTitle() {
36          return title;
37      }
38  
39      public void setTitle(String title) {
40          this.title = title;
41      }
42  
43      public String getAuthor() {
44          return author;
45      }
46  
47      public void setAuthor(String author) {
48          this.author = author;
49      }
50  
51      public String getCallNumber() {
52          return callNumber;
53      }
54  
55      public void setCallNumber(String callNumber) {
56          this.callNumber = callNumber;
57      }
58  }