1 package org.kuali.ole.bo.serachRetrieve;
2
3 import java.util.List;
4
5
6
7
8
9
10
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 }