View Javadoc

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   * Created with IntelliJ IDEA.
11   * User: Srinivasan
12   * Date: 7/16/12
13   * Time: 7:06 PM
14   * To change this template use File | Settings | File Templates.
15   */
16  public class OleSRUOpacXMLResponseHandler {
17  
18      /**
19       * this method converts xml to  OleSRUResponseDocuments object
20       * @param fileContent
21       * @return  OleSRUResponseDocuments object
22       * @throws URISyntaxException
23       * @throws IOException
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         // xStream.alias("bibliographicRecord", OleSRUBibDocument.class);
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       * this method converts OleSRUResponseDocuments object to xml string
41       * @param opacRecords object
42       * @return xml as a String
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          //xStream.alias("bibliographicRecord", OleSRUBibDocument.class);
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  }