View Javadoc
1   package org.kuali.ole.docstore.common.document;
2   
3   import org.apache.log4j.Logger;
4   import org.kuali.ole.docstore.common.document.factory.JAXBContextFactory;
5   
6   import javax.xml.bind.JAXBContext;
7   import javax.xml.bind.Marshaller;
8   import javax.xml.bind.Unmarshaller;
9   import javax.xml.bind.annotation.*;
10  import javax.xml.stream.XMLStreamReader;
11  import javax.xml.transform.stream.StreamSource;
12  import java.io.ByteArrayInputStream;
13  import java.io.StringWriter;
14  import java.util.ArrayList;
15  import java.util.List;
16  
17  
18  /**
19   * <p>Java class for bibTree complex type.
20   * <p/>
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * <p/>
23   * <pre>
24   * &lt;complexType name="bibTree">
25   *   &lt;complexContent>
26   *     &lt;extension base="{}docstoreDocument">
27   *       &lt;sequence>
28   *         &lt;element name="holdingsTrees" type="{}holdingsTree" maxOccurs="unbounded" minOccurs="0"/>
29   *         &lt;element name="bib" type="{}bib" minOccurs="0"/>
30   *       &lt;/sequence>
31   *     &lt;/extension>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   */
36  @XmlAccessorType(XmlAccessType.FIELD)
37  @XmlType(name = "bibTree", propOrder = {
38          "holdingsTrees",
39          "bib"
40  })
41  
42  @XmlRootElement(name = "bibDocTree")
43  public class BibTree {
44  
45      private static final Logger LOG = Logger.getLogger(BibTree.class);
46      // XmLElementWrapper generates a wrapper element around XML representation
47      @XmlElementWrapper(name = "holdingsDocsTree")
48      // XmlElement sets the name of the entities
49      @XmlElement(name = "holdingsDocTree")
50      protected List<HoldingsTree> holdingsTrees;
51  
52      @XmlElement(name = "bibDoc")
53      protected Bib bib;
54  
55      /**
56       * Gets the value of the holdingsTrees property.
57       * <p/>
58       * <p/>
59       * This accessor method returns a reference to the live list,
60       * not a snapshot. Therefore any modification you make to the
61       * returned list will be present inside the JAXB object.
62       * This is why there is not a <CODE>set</CODE> method for the holdingsTrees property.
63       * <p/>
64       * <p/>
65       * For example, to add a new item, do as follows:
66       * <pre>
67       *    getHoldingsTrees().add(newItem);
68       * </pre>
69       * <p/>
70       * <p/>
71       * <p/>
72       * Objects of the following type(s) are allowed in the list
73       * {@link org.kuali.ole.docstore.common.document.HoldingsTree }
74       */
75      public List<HoldingsTree> getHoldingsTrees() {
76          if (holdingsTrees == null) {
77              holdingsTrees = new ArrayList<HoldingsTree>();
78          }
79          return this.holdingsTrees;
80      }
81  
82      /**
83       * Gets the value of the bib property.
84       *
85       * @return possible object is
86       *         {@link org.kuali.ole.docstore.common.document.Bib }
87       */
88      public Bib getBib() {
89          return bib;
90      }
91  
92      /**
93       * Sets the value of the bib property.
94       *
95       * @param value allowed object is
96       *              {@link org.kuali.ole.docstore.common.document.Bib }
97       */
98      public void setBib(Bib value) {
99          this.bib = value;
100     }
101 
102     public String serialize(Object object) {
103         String result = null;
104         BibTree bibTree = (BibTree) object;
105         try {
106             StringWriter sw = new StringWriter();
107             Marshaller jaxbMarshaller = JAXBContextFactory.getInstance().getMarshaller(BibTree.class);
108             synchronized (jaxbMarshaller) {
109                 jaxbMarshaller.marshal(bibTree, sw);
110             }
111             result = sw.toString();
112         } catch (Exception e) {
113             LOG.error("Exception :", e);
114         }
115         return result;
116     }
117 
118     public Object deserialize(String bibTreeXml) {
119         BibTree bibTree = new BibTree();
120         try {
121             ByteArrayInputStream bibTreeInputStream = new ByteArrayInputStream(bibTreeXml.getBytes("UTF-8"));
122             StreamSource streamSource = new StreamSource(bibTreeInputStream);
123             XMLStreamReader xmlStreamReader = JAXBContextFactory.getInstance().getXmlInputFactory().createXMLStreamReader(streamSource);
124             Unmarshaller unmarshaller = JAXBContextFactory.getInstance().getUnMarshaller(BibTree.class);
125             synchronized (unmarshaller) {
126                 bibTree = unmarshaller.unmarshal(xmlStreamReader, BibTree.class).getValue();
127             }
128         } catch (Exception e) {
129             LOG.error("Exception :", e);
130         }
131         return bibTree;
132     }
133 
134 }