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
9
10
11
12
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
23 public String getTitle() {
24 return title;
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 void setTitle(String title) {
36 this.title = title;
37
38 }
39
40 public String getAuthor() {
41 return author;
42 }
43
44 public void setAuthor(String author) {
45 this.author = author;
46 }
47
48 public String getPublisher() {
49 return publisher;
50 }
51
52 public void setPublisher(String publisher) {
53 this.publisher = publisher;
54 }
55
56 public String getItemType() {
57 return itemType;
58 }
59
60 public void setItemType(String itemType) {
61 this.itemType = itemType;
62 }
63
64 public String getCallNumber() {
65 return callNumber;
66 }
67
68 public void setCallNumber(String callNumber) {
69 this.callNumber = callNumber;
70 }
71 }