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.JAXBElement;
8   import javax.xml.bind.Marshaller;
9   import javax.xml.bind.Unmarshaller;
10  import javax.xml.bind.annotation.*;
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 bibs 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="bibs">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element name="bibs" type="{}bib" maxOccurs="unbounded" minOccurs="0"/>
29   *       &lt;/sequence>
30   *     &lt;/restriction>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "bibs", propOrder = {
37          "bibs"
38  })
39  @XmlRootElement(name = "bibDocs")
40  public class Bibs {
41  
42      private static final Logger LOG = Logger.getLogger(Bibs.class);
43  
44      @XmlElement(name = "bibDoc")
45      protected List<Bib> bibs;
46  
47      public static String serialize(Object object) {
48          String result = null;
49          Bibs bibs = (Bibs) object;
50          try {
51              StringWriter sw = new StringWriter();
52              Marshaller jaxbMarshaller = JAXBContext.newInstance(Bibs.class).createMarshaller();
53              jaxbMarshaller.marshal(bibs, sw);
54              result = sw.toString();
55          } catch (Exception e) {
56              LOG.error("Exception :", e);
57          }
58          return result;
59      }
60  
61      public static Object deserialize(String bibsXml) {
62          Bibs bibs = new Bibs();
63          try {
64              Unmarshaller unmarshaller = JAXBContext.newInstance(Bibs.class).createUnmarshaller();
65              ByteArrayInputStream input = new ByteArrayInputStream(bibsXml.getBytes("UTF-8"));
66              JAXBElement<Bibs> bibsElement = unmarshaller.unmarshal(new StreamSource(input), Bibs.class);
67              bibs = bibsElement.getValue();
68          } catch (Exception e) {
69              LOG.error("Exception :", e);
70          }
71          return bibs;
72      }
73  
74      /**
75       * Gets the value of the bibs property.
76       * <p/>
77       * <p/>
78       * This accessor method returns a reference to the live list,
79       * not a snapshot. Therefore any modification you make to the
80       * returned list will be present inside the JAXB object.
81       * This is why there is not a <CODE>set</CODE> method for the bibs property.
82       * <p/>
83       * <p/>
84       * For example, to add a new item, do as follows:
85       * <pre>
86       *    getBibs().add(newItem);
87       * </pre>
88       * <p/>
89       * <p/>
90       * <p/>
91       * Objects of the following type(s) are allowed in the list
92       * {@link Bib }
93       */
94      public List<Bib> getBibs() {
95          if (bibs == null) {
96              bibs = new ArrayList<Bib>();
97          }
98          return this.bibs;
99      }
100 
101 }