1 package org.kuali.ole.bo.serachRetrieve;
2
3 import java.util.List;
4
5
6
7
8
9
10
11
12 public class OleSRUResponseRecordData {
13
14 public String bibliographicRecord;
15 public List<OleSRUInstanceDocument> holdings;
16
17 public String extraRequestData;
18
19 public String getBibliographicRecord() {
20 return bibliographicRecord;
21 }
22
23 public void setBibliographicRecord(String bibliographicRecord) {
24 this.bibliographicRecord = bibliographicRecord;
25 }
26
27 public List<OleSRUInstanceDocument> getHoldings() {
28 return holdings;
29 }
30
31 public void setHoldings(List<OleSRUInstanceDocument> holdings) {
32 this.holdings = holdings;
33 }
34
35 public String getExtraRequestData() {
36 return extraRequestData;
37 }
38
39 public void setExtraRequestData(String extraRequestData) {
40 this.extraRequestData = extraRequestData;
41 }
42
43 @Override
44 public String toString() {
45 return "OleSRUResponseRecordData{" +
46 "bibliographicRecord='" + bibliographicRecord + '\'' +
47 ", holdings=" + holdings +
48 ", extraRequestData='" + extraRequestData + '\'' +
49 '}';
50 }
51 }