1 package org.kuali.ole.handler;
2
3 import com.thoughtworks.xstream.XStream;
4 import org.kuali.ole.bo.serachRetrieve.*;
5
6 import java.io.IOException;
7 import java.net.URISyntaxException;
8
9
10
11
12
13
14
15
16 public class OleSRUOpacXMLResponseHandler {
17
18
19
20
21
22
23
24
25 public OleSRUResponseDocuments fromXML(String fileContent) throws URISyntaxException, IOException {
26
27 XStream xStream = new XStream();
28 xStream.alias("opacRecords", OleSRUResponseDocuments.class);
29 xStream.alias("opacRecord", OleSRUResponseDocument.class);
30
31 xStream.alias("holding",OleSRUInstanceDocument.class);
32 xStream.alias("circulation", OleSRUCirculationDocument.class);
33 xStream.alias("volume", OleSRUInstanceVolume.class);
34 xStream.addImplicitCollection(OleSRUResponseDocuments.class,"opacRecords");
35 Object object = xStream.fromXML(fileContent);
36 return (OleSRUResponseDocuments)object;
37 }
38
39
40
41
42
43
44 public String toXML(OleSRUResponseDocuments opacRecords) {
45 StringBuffer stringBuffer = new StringBuffer();
46 stringBuffer.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" );
47 XStream xStream = new XStream();
48 xStream.alias("opacRecords", OleSRUResponseDocuments.class);
49 xStream.alias("opacRecord", OleSRUResponseDocument.class);
50
51 xStream.alias("holding", OleSRUInstanceDocument.class);
52 xStream.alias("circulation", OleSRUCirculationDocument.class);
53 xStream.alias("volume", OleSRUInstanceVolume.class);
54 xStream.addImplicitCollection(OleSRUResponseDocuments.class,"opacRecords");
55 String xml = xStream.toXML(opacRecords);
56 stringBuffer.append(xml);
57 return stringBuffer.toString();
58 }
59
60
61
62 }