View Javadoc
1   package org.kuali.ole.deliver.controller;
2   
3   import com.thoughtworks.xstream.XStream;
4   import org.kuali.ole.deliver.bo.OleConfigDocument;
5   import org.kuali.ole.deliver.bo.OlePatronConfig;
6   
7   import java.io.IOException;
8   import java.net.URISyntaxException;
9   
10  /**
11   * Created with IntelliJ IDEA.
12   * User: vivekb
13   * Date: 8/22/12
14   * Time: 3:04 PM
15   * To change this template use File | Settings | File Templates.
16   */
17  public class OlePatronConfigObjectGeneratorFromXML {
18      /**
19       * This method returns PatronConfig object from fileContent.
20       * The xStream will convert the fileContent into PatronConfig Object.
21       *
22       * @param fileContent
23       * @return PatronConfig object
24       * @throws java.net.URISyntaxException
25       * @throws java.io.IOException
26       */
27  
28      public OlePatronConfig buildKrmsFromFileContent(String fileContent) throws URISyntaxException, IOException {
29          XStream xStream = new XStream();
30          xStream.alias("patronConfig", OlePatronConfig.class);
31          xStream.alias("document", OleConfigDocument.class);
32          Object object = xStream.fromXML(fileContent);
33          return (OlePatronConfig) object;
34      }
35  }