X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fforwarding%2Fstaticrouting%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fforwarding%2Fstaticrouting%2FIForwardingStaticRouting.java;h=0166d279f66528135322f3c8d250ec381bd2de1a;hb=ed55006f54e710851f766cf9640175dfc5df5725;hp=9b9c0b0d812fa943a39e200a69c79eb72cb8d7a7;hpb=29f7cfb54b580928c7feac63abce028a7014b0d5;p=controller.git diff --git a/opendaylight/forwarding/staticrouting/src/main/java/org/opendaylight/controller/forwarding/staticrouting/IForwardingStaticRouting.java b/opendaylight/forwarding/staticrouting/src/main/java/org/opendaylight/controller/forwarding/staticrouting/IForwardingStaticRouting.java index 9b9c0b0d81..0166d279f6 100644 --- a/opendaylight/forwarding/staticrouting/src/main/java/org/opendaylight/controller/forwarding/staticrouting/IForwardingStaticRouting.java +++ b/opendaylight/forwarding/staticrouting/src/main/java/org/opendaylight/controller/forwarding/staticrouting/IForwardingStaticRouting.java @@ -12,12 +12,17 @@ package org.opendaylight.controller.forwarding.staticrouting; import java.net.InetAddress; import java.util.concurrent.ConcurrentMap; /** - * + * * This interface provides APIs to configure and manage static routes. * */ import org.opendaylight.controller.sal.utils.Status; +/** + * + * This Interface provides APIs to manage and query the static routes + * + */ public interface IForwardingStaticRouting { /** @@ -48,11 +53,4 @@ public interface IForwardingStaticRouting { * If the operation is successful, the return string will be "SUCCESS" */ public Status removeStaticRoute(String name); - - /** - * Saves the config - * @return a text string indicating the result of the operation. - * If the operation is successful, the return string will be "Success" - */ - Status saveConfig(); }