View Javadoc
1   package org.kuali.ole.bo.serachRetrieve;
2   
3   import java.util.List;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: ?
8    * Date: 7/17/12
9    * Time: 4:01 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OleSRUResponseDocument {
13  
14      public OleSRUResponseRecordData oleSRUResponseRecordData;
15      public OleSRUResponseRecordData getOleSRUResponseRecordData() {
16          return oleSRUResponseRecordData;
17      }
18  
19      public void setOleSRUResponseRecordData(OleSRUResponseRecordData oleSRUResponseRecordData) {
20          this.oleSRUResponseRecordData = oleSRUResponseRecordData;
21      }
22  
23      @Override
24      public String toString() {
25          return "OleSRUResponseDocument{" +
26                  "oleSRUResponseRecordData=" + oleSRUResponseRecordData +
27                  '}';
28      }
29  }