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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94 public List<Bib> getBibs() {
95 if (bibs == null) {
96 bibs = new ArrayList<Bib>();
97 }
98 return this.bibs;
99 }
100
101 }