1   package org.kuali.ole.bo.serachRetrieve;
2   
3   import java.util.List;
4   
5   
6   
7   
8   
9   
10  
11  
12  public class OleSRUResponseRecords {
13      private List<OleSRUResponseRecord> oleSRUResponseRecordList;
14  
15      public List<OleSRUResponseRecord> getOleSRUResponseRecordList() {
16          return oleSRUResponseRecordList;
17      }
18  
19      public void setOleSRUResponseRecordList(List<OleSRUResponseRecord> oleSRUResponseRecordList) {
20          this.oleSRUResponseRecordList = oleSRUResponseRecordList;
21      }
22  
23      @Override
24      public String toString() {
25          return "OleSRUResponseRecords{" +
26                  "oleSRUResponseRecordList=" + oleSRUResponseRecordList +
27                  '}';
28      }
29  }