View Javadoc

1   package org.kuali.ole.deliver.loan.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.LinkedHashMap;
6   
7   /**
8    * Created with IntelliJ IDEA.
9    * User: ?
10   * Date: 10/3/12
11   * Time: 4:57 PM
12   * To change this template use File | Settings | File Templates.
13   */
14  public class OleItemSearch extends PersistableBusinessObjectBase {
15  
16       private String title;
17       private String author;
18       private String itemBarCode;
19       private String publisher;
20       private String itemType;
21       private String callNumber;
22       private String shelvingLocation;
23       private String copyNumber;
24       private String itemStatus;
25  
26      public String getTitle() {
27          return title;
28      }
29  
30      public String getItemBarCode() {
31          return itemBarCode;
32      }
33  
34      public void setItemBarCode(String itemBarCode) {
35          this.itemBarCode = itemBarCode;
36      }
37  
38      public void setTitle(String title) {
39          this.title = title;
40  
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 getPublisher() {
52          return publisher;
53      }
54  
55      public void setPublisher(String publisher) {
56          this.publisher = publisher;
57      }
58  
59      public String getItemType() {
60          return itemType;
61      }
62  
63      public void setItemType(String itemType) {
64          this.itemType = itemType;
65      }
66  
67      public String getCallNumber() {
68          return callNumber;
69      }
70  
71      public void setCallNumber(String callNumber) {
72          this.callNumber = callNumber;
73      }
74  
75      public String getShelvingLocation() {
76          return shelvingLocation;
77      }
78  
79      public void setShelvingLocation(String shelvingLocation) {
80          this.shelvingLocation = shelvingLocation;
81      }
82  
83      public String getCopyNumber() {
84          return copyNumber;
85      }
86  
87      public void setCopyNumber(String copyNumber) {
88          this.copyNumber = copyNumber;
89      }
90  
91      public String getItemStatus() {
92          return itemStatus;
93      }
94  
95      public void setItemStatus(String itemStatus) {
96          this.itemStatus = itemStatus;
97      }
98  }