BUG-2459: Fix netconf-monitoring not reusing JAXB context
[controller.git] / opendaylight / netconf / netconf-monitoring / src / main / java / org / opendaylight / controller / netconf / monitoring / xml / JaxBSerializer.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.netconf.monitoring.xml;
9
10 import javax.xml.bind.JAXBContext;
11 import javax.xml.bind.JAXBException;
12 import javax.xml.bind.Marshaller;
13 import javax.xml.transform.dom.DOMResult;
14 import org.opendaylight.controller.netconf.monitoring.xml.model.NetconfState;
15 import org.w3c.dom.Document;
16 import org.w3c.dom.Element;
17
18 public class JaxBSerializer {
19     private static final JAXBContext JAXB_CONTEXT;
20
21     static {
22         try {
23             JAXB_CONTEXT = JAXBContext.newInstance(NetconfState.class);
24         } catch (JAXBException e) {
25             throw new ExceptionInInitializerError(e);
26         }
27     }
28
29     public Element toXml(final NetconfState monitoringModel) {
30         final DOMResult res;
31         try {
32             final Marshaller marshaller = JAXB_CONTEXT.createMarshaller();
33
34             marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
35
36             res = new DOMResult();
37             marshaller.marshal(monitoringModel, res);
38         } catch (final JAXBException e) {
39             throw new RuntimeException("Unable to serialize netconf state " + monitoringModel, e);
40         }
41         return ((Document)res.getNode()).getDocumentElement();
42     }
43 }