1 package org.kuali.ole.deliver.bo;
2
3
4
5
6 public class OleTitleLevelRequestItem {
7 private String itemBarcode;
8 private String holdingsId;
9 private String itemLocation;
10 private String itemType;
11 private String itemStatus;
12 private boolean selectedItem;
13 private String volumeNumber;
14
15 public String getItemBarcode() {
16 return itemBarcode;
17 }
18
19 public void setItemBarcode(String itemBarcode) {
20 this.itemBarcode = itemBarcode;
21 }
22
23 public String getHoldingsId() {
24 return holdingsId;
25 }
26
27 public void setHoldingsId(String holdingsId) {
28 this.holdingsId = holdingsId;
29 }
30
31 public String getItemLocation() {
32 return itemLocation;
33 }
34
35 public void setItemLocation(String itemLocation) {
36 this.itemLocation = itemLocation;
37 }
38
39 public String getItemType() {
40 return itemType;
41 }
42
43 public void setItemType(String itemType) {
44 this.itemType = itemType;
45 }
46
47 public String getItemStatus() {
48 return itemStatus;
49 }
50
51 public void setItemStatus(String itemStatus) {
52 this.itemStatus = itemStatus;
53 }
54
55 public boolean isSelectedItem() {
56 return selectedItem;
57 }
58
59 public void setSelectedItem(boolean selectedItem) {
60 this.selectedItem = selectedItem;
61 }
62
63 public String getVolumeNumber() {
64 return volumeNumber;
65 }
66
67 public void setVolumeNumber(String volumeNumber) {
68 this.volumeNumber = volumeNumber;
69 }
70 }