View Javadoc
1   package org.kuali.ole.bo.serachRetrieve;
2   
3   import org.kuali.ole.docstore.common.document.content.bib.marc.BibMarcRecord;
4   import org.kuali.ole.docstore.common.document.content.bib.marc.BibMarcRecords;
5   
6   import java.util.List;
7   
8   /**
9    * Created with IntelliJ IDEA.
10   * User: maheswarang
11   * Date: 5/27/13
12   * Time: 11:50 AM
13   * To change this template use File | Settings | File Templates.
14   */
15  public class OleSRUResponseRecordData {
16      public BibMarcRecords  bibMarcRecords;
17      public String bibliographicRecord;
18      public List<OleSRUInstanceDocument> holdings;
19  
20      public String extraRequestData;
21  
22      public String getBibliographicRecord() {
23          return bibliographicRecord;
24      }
25  
26      public void setBibliographicRecord(String bibliographicRecord) {
27          this.bibliographicRecord = bibliographicRecord;
28      }
29  
30      public List<OleSRUInstanceDocument> getHoldings() {
31          return holdings;
32      }
33  
34      public void setHoldings(List<OleSRUInstanceDocument> holdings) {
35          this.holdings = holdings;
36      }
37  
38      public String getExtraRequestData() {
39          return extraRequestData;
40      }
41  
42      public void setExtraRequestData(String extraRequestData) {
43          this.extraRequestData = extraRequestData;
44      }
45  
46      @Override
47      public String toString() {
48          return "OleSRUResponseRecordData{" +
49                  "bibliographicRecord='" + bibliographicRecord + '\'' +
50                  ", holdings=" + holdings +
51                  ", extraRequestData='" + extraRequestData + '\'' +
52                  '}';
53      }
54  
55      public BibMarcRecords getBibMarcRecords() {
56          return bibMarcRecords;
57      }
58  
59      public void setBibMarcRecords(BibMarcRecords bibMarcRecords) {
60          this.bibMarcRecords = bibMarcRecords;
61      }
62  }