001package org.kuali.ole.bo.serachRetrieve; 002 003import org.kuali.ole.docstore.common.document.content.bib.marc.BibMarcRecord; 004import org.kuali.ole.docstore.common.document.content.bib.marc.BibMarcRecords; 005 006import java.util.List; 007 008/** 009 * Created with IntelliJ IDEA. 010 * User: maheswarang 011 * Date: 5/27/13 012 * Time: 11:50 AM 013 * To change this template use File | Settings | File Templates. 014 */ 015public class OleSRUResponseRecordData { 016 public BibMarcRecords bibMarcRecords; 017 public String bibliographicRecord; 018 public List<OleSRUInstanceDocument> holdings; 019 020 public String extraRequestData; 021 022 public String getBibliographicRecord() { 023 return bibliographicRecord; 024 } 025 026 public void setBibliographicRecord(String bibliographicRecord) { 027 this.bibliographicRecord = bibliographicRecord; 028 } 029 030 public List<OleSRUInstanceDocument> getHoldings() { 031 return holdings; 032 } 033 034 public void setHoldings(List<OleSRUInstanceDocument> holdings) { 035 this.holdings = holdings; 036 } 037 038 public String getExtraRequestData() { 039 return extraRequestData; 040 } 041 042 public void setExtraRequestData(String extraRequestData) { 043 this.extraRequestData = extraRequestData; 044 } 045 046 @Override 047 public String toString() { 048 return "OleSRUResponseRecordData{" + 049 "bibliographicRecord='" + bibliographicRecord + '\'' + 050 ", holdings=" + holdings + 051 ", extraRequestData='" + extraRequestData + '\'' + 052 '}'; 053 } 054 055 public BibMarcRecords getBibMarcRecords() { 056 return bibMarcRecords; 057 } 058 059 public void setBibMarcRecords(BibMarcRecords bibMarcRecords) { 060 this.bibMarcRecords = bibMarcRecords; 061 } 062}