Resolve Bug:707 - ConfigPusher should wait for netconf-impl to register JMX bean.
[controller.git] / opendaylight / netconf / netconf-api / src / main / java / org / opendaylight / controller / netconf / api / NetconfMessage.java
index 33d41b0470516c15f277b183b146470e3cffdc83..78586a3fec2bb926690771732769dc71ddaff99d 100644 (file)
@@ -8,17 +8,13 @@
 
 package org.opendaylight.controller.netconf.api;
 
-import org.opendaylight.protocol.framework.ProtocolMessage;
 import org.w3c.dom.Document;
 
 /**
  * NetconfMessage represents a wrapper around org.w3c.dom.Document. Needed for
  * implementing ProtocolMessage interface.
  */
-public final class NetconfMessage implements ProtocolMessage {
-
-    private static final long serialVersionUID = 462175939836367285L;
-
+public class NetconfMessage {
     private final Document doc;
 
     public NetconfMessage(final Document doc) {