View Javadoc
1   package org.kuali.ole.bo.serachRetrieve;
2   
3   import java.util.List;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: maheswarang
8    * Date: 5/27/13
9    * Time: 1:15 PM
10   * To change this template use File | Settings | File Templates.
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  }