X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-mapping-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fmapping%2Fapi%2FNetconfOperation.java;h=00b3124e7f19076b96ddadae22c0599228c75783;hb=refs%2Fchanges%2F13%2F23413%2F26;hp=c7298cbf1e4ae42e91976868cc93851c77bf8f7b;hpb=6dae254dbc2940d1f0f372d65d69b0e0dda415fe;p=controller.git diff --git a/opendaylight/netconf/netconf-mapping-api/src/main/java/org/opendaylight/controller/netconf/mapping/api/NetconfOperation.java b/opendaylight/netconf/netconf-mapping-api/src/main/java/org/opendaylight/controller/netconf/mapping/api/NetconfOperation.java index c7298cbf1e..00b3124e7f 100644 --- a/opendaylight/netconf/netconf-mapping-api/src/main/java/org/opendaylight/controller/netconf/mapping/api/NetconfOperation.java +++ b/opendaylight/netconf/netconf-mapping-api/src/main/java/org/opendaylight/controller/netconf/mapping/api/NetconfOperation.java @@ -8,7 +8,7 @@ package org.opendaylight.controller.netconf.mapping.api; -import org.opendaylight.controller.netconf.api.NetconfDocumentedException; +import org.opendaylight.controller.config.util.xml.DocumentedException; import org.w3c.dom.Document; /** @@ -33,7 +33,7 @@ public interface NetconfOperation { * @param requestMessage * @return */ - HandlingPriority canHandle(Document message) throws NetconfDocumentedException; + HandlingPriority canHandle(Document message) throws DocumentedException; /** * Execute current netconf operation and trigger execution of subsequent @@ -46,8 +46,8 @@ public interface NetconfOperation { * @param subsequentOperation * execution of subsequent netconf operation * @return - * @throws NetconfDocumentedException + * @throws DocumentedException */ Document handle(Document requestMessage, NetconfOperationChainedExecution subsequentOperation) - throws NetconfDocumentedException; + throws DocumentedException; }