Remove opendaylight directory
[netconf.git] / opendaylight / netconf / netconf-api / src / main / java / org / opendaylight / netconf / api / NetconfMessage.java
diff --git a/opendaylight/netconf/netconf-api/src/main/java/org/opendaylight/netconf/api/NetconfMessage.java b/opendaylight/netconf/netconf-api/src/main/java/org/opendaylight/netconf/api/NetconfMessage.java
deleted file mode 100644 (file)
index 957c047..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.netconf.api;
-
-import java.io.StringWriter;
-import javax.xml.transform.OutputKeys;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.TransformerConfigurationException;
-import javax.xml.transform.TransformerException;
-import javax.xml.transform.TransformerFactory;
-import javax.xml.transform.TransformerFactoryConfigurationError;
-import javax.xml.transform.dom.DOMSource;
-import javax.xml.transform.stream.StreamResult;
-import org.w3c.dom.Document;
-
-/**
- * NetconfMessage represents a wrapper around org.w3c.dom.Document. Needed for
- * implementing ProtocolMessage interface.
- */
-public class NetconfMessage {
-    private static final Transformer TRANSFORMER;
-
-    static {
-        final Transformer t;
-        try {
-            t = TransformerFactory.newInstance().newTransformer();
-        } catch (TransformerConfigurationException | TransformerFactoryConfigurationError e) {
-            throw new ExceptionInInitializerError(e);
-        }
-        t.setOutputProperty(OutputKeys.INDENT, "yes");
-        t.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
-
-        TRANSFORMER = t;
-    }
-
-    private final Document doc;
-
-    public NetconfMessage(final Document doc) {
-        this.doc = doc;
-    }
-
-    public Document getDocument() {
-        return this.doc;
-    }
-
-    @Override
-    public String toString() {
-        final StreamResult result = new StreamResult(new StringWriter());
-        final DOMSource source = new DOMSource(doc.getDocumentElement());
-
-        try {
-            // Slight critical section is a tradeoff. This should be reasonably fast.
-            synchronized (TRANSFORMER) {
-                TRANSFORMER.transform(source, result);
-            }
-        } catch (TransformerException e) {
-            throw new IllegalStateException("Failed to encode document", e);
-        }
-
-        return result.getWriter().toString();
-    }
-}