Bump upstream versions
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / monitoring / 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.netconf.test.tool.monitoring;
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.w3c.dom.Document;
15 import org.w3c.dom.Element;
16
17 public class JaxBSerializer {
18     private static final JAXBContext JAXB_CONTEXT;
19
20     static {
21         try {
22             JAXB_CONTEXT = JAXBContext.newInstance(NetconfState.class);
23         } catch (final JAXBException e) {
24             throw new ExceptionInInitializerError(e);
25         }
26     }
27
28     public Element toXml(final NetconfState monitoringModel) {
29         final DOMResult res;
30         try {
31             final Marshaller marshaller = JAXB_CONTEXT.createMarshaller();
32
33             marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
34
35             res = new DOMResult();
36             marshaller.marshal(monitoringModel, res);
37         } catch (final JAXBException e) {
38             throw new IllegalStateException("Unable to serialize netconf state " + monitoringModel, e);
39         }
40         return ((Document) res.getNode()).getDocumentElement();
41     }
42 }