1 package org.kuali.ole.deliver.bo;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6
7
8
9 public class OLEBibSearchResultDisplayRow {
10
11 private String id;
12 private String title;
13 private String author;
14 private String publicationYear;
15 private String holdingsLocation;
16 private String itemLocation;
17 private String itemCallNumber;
18 private String itemStatus;
19 private String itemType;
20 private List<OLEHoldingsSearchResultDisplayRow> oleHoldingsSearchResultDisplayRowList = new ArrayList<>();
21
22 public String getId() {
23 return id;
24 }
25
26 public void setId(String id) {
27 this.id = id;
28 }
29
30 public String getTitle() {
31 return title;
32 }
33
34 public void setTitle(String title) {
35 this.title = title;
36 }
37
38 public String getAuthor() {
39 return author;
40 }
41
42 public void setAuthor(String author) {
43 this.author = author;
44 }
45
46 public String getPublicationYear() {
47 return publicationYear;
48 }
49
50 public void setPublicationYear(String publicationYear) {
51 this.publicationYear = publicationYear;
52 }
53
54 public String getHoldingsLocation() {
55 return holdingsLocation;
56 }
57
58 public void setHoldingsLocation(String holdingsLocation) {
59 this.holdingsLocation = holdingsLocation;
60 }
61
62 public String getItemLocation() {
63 return itemLocation;
64 }
65
66 public void setItemLocation(String itemLocation) {
67 this.itemLocation = itemLocation;
68 }
69
70 public String getItemCallNumber() {
71 return itemCallNumber;
72 }
73
74 public void setItemCallNumber(String itemCallNumber) {
75 this.itemCallNumber = itemCallNumber;
76 }
77
78 public String getItemStatus() {
79 return itemStatus;
80 }
81
82 public void setItemStatus(String itemStatus) {
83 this.itemStatus = itemStatus;
84 }
85
86 public String getItemType() {
87 return itemType;
88 }
89
90 public void setItemType(String itemType) {
91 this.itemType = itemType;
92 }
93
94 public List<OLEHoldingsSearchResultDisplayRow> getOleHoldingsSearchResultDisplayRowList() {
95 return oleHoldingsSearchResultDisplayRowList;
96 }
97
98 public void setOleHoldingsSearchResultDisplayRowList(List<OLEHoldingsSearchResultDisplayRow> oleHoldingsSearchResultDisplayRowList) {
99 this.oleHoldingsSearchResultDisplayRowList = oleHoldingsSearchResultDisplayRowList;
100 }
101 }