Remove dependency on Exificient due to licensing incompatibility
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / mapping / operations / DefaultStartExi.java
index 679e280ba22933822d6c08942c80b548b075c0da..38c1a447e4ba7e3613df52e7dff3bf67cfe4f9be 100644 (file)
@@ -10,12 +10,9 @@ package org.opendaylight.controller.netconf.impl.mapping.operations;
 import org.opendaylight.controller.netconf.api.NetconfSession;\r
 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;\r
 import org.opendaylight.controller.netconf.api.NetconfOperationRouter;\r
-import org.opendaylight.controller.netconf.impl.mapping.ExiDecoderHandler;\r
-import org.opendaylight.controller.netconf.impl.mapping.ExiEncoderHandler;\r
 import org.opendaylight.controller.netconf.mapping.api.DefaultNetconfOperation;\r
 import org.opendaylight.controller.netconf.mapping.api.HandlingPriority;\r
 import org.opendaylight.controller.netconf.util.mapping.AbstractNetconfOperation;\r
-import org.opendaylight.controller.netconf.util.xml.ExiParameters;\r
 import org.opendaylight.controller.netconf.util.xml.XmlElement;\r
 import org.opendaylight.controller.netconf.util.xml.XmlNetconfConstants;\r
 import org.opendaylight.controller.netconf.util.xml.XmlUtil;\r
@@ -24,8 +21,6 @@ import org.slf4j.LoggerFactory;
 import org.w3c.dom.Document;\r
 import org.w3c.dom.Element;\r
 \r
-import com.siemens.ct.exi.exceptions.EXIException;\r
-\r
 public class DefaultStartExi extends AbstractNetconfOperation implements DefaultNetconfOperation {\r
 \r
     public static final String START_EXI = "start-exi";\r
@@ -61,6 +56,9 @@ public class DefaultStartExi extends AbstractNetconfOperation implements Default
                 XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0);\r
 \r
 \r
+        throw new UnsupportedOperationException("Not implemented");\r
+\r
+        /*\r
         try {\r
             ExiParameters exiParams = new ExiParameters();\r
             exiParams.setParametersFromXmlElement(operationElement);\r
@@ -76,7 +74,7 @@ public class DefaultStartExi extends AbstractNetconfOperation implements Default
         logger.trace("{} operation successful", START_EXI);\r
         logger.debug("received start-exi message {} ", XmlUtil.toString(document));\r
         return getSchemaResult;\r
-\r
+        */\r
     }\r
 \r
     @Override\r