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.Marshaller;
7 import javax.xml.bind.Unmarshaller;
8 import javax.xml.bind.annotation.XmlRootElement;
9 import javax.xml.transform.stream.StreamSource;
10 import java.io.ByteArrayInputStream;
11 import java.io.StringWriter;
12
13
14
15
16
17
18
19
20 @XmlRootElement(name = "license")
21 public class License extends DocstoreDocument {
22
23 private static final Logger LOG = Logger.getLogger(License.class);
24
25 @Override
26 public String serialize(Object object) {
27 String result = null;
28 License license = (License) object;
29 try {
30 StringWriter sw = new StringWriter();
31 JAXBContextFactory jaxbContextFactory = JAXBContextFactory.getInstance();
32 Marshaller jaxbMarshaller = jaxbContextFactory.getMarshaller(License.class);
33 synchronized (jaxbMarshaller) {
34 jaxbMarshaller.marshal(license, sw);
35 }
36
37 result = sw.toString();
38 } catch (Exception e) {
39 LOG.error("Exception :", e);
40 }
41 return result;
42 }
43
44 @Override
45 public Object deserialize(String content) {
46 License license = new License();
47 try {
48 Unmarshaller unmarshaller = JAXBContextFactory.getInstance().getUnMarshaller(License.class);
49 ByteArrayInputStream input = new ByteArrayInputStream(content.getBytes("UTF-8"));
50 synchronized (unmarshaller) {
51 license = unmarshaller.unmarshal(new StreamSource(input), License.class).getValue();
52 }
53
54 } catch (Exception e) {
55 LOG.error("Exception :", e);
56 }
57 return license;
58 }
59
60 @Override
61 public Object deserializeContent(Object object) {
62 return null;
63 }
64
65 @Override
66 public Object deserializeContent(String content) {
67 return null;
68 }
69
70 @Override
71 public String serializeContent(Object object) {
72 return null;
73 }
74 }