X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fforwarding%2Fstaticrouting%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fforwarding%2Fstaticrouting%2FIForwardingStaticRouting.java;h=03d9453126d89c8c5d9074bc7ec7b643c089d9a3;hp=0166d279f66528135322f3c8d250ec381bd2de1a;hb=e7342a8b0e42dcaccfa0a3af8bb70ece3f9d2189;hpb=7c3362df780f30a47d0f6a7b7695360bbb5513bc 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 0166d279f6..03d9453126 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 @@ -30,13 +30,13 @@ public interface IForwardingStaticRouting { * @param ipAddress (InetAddress) the IP address * @return StaticRoute */ - public StaticRoute getBestMatchStaticRoute(InetAddress ipAddress); + StaticRoute getBestMatchStaticRoute(InetAddress ipAddress); /** * Returns all the StaticRouteConfig * @return all the StaticRouteConfig */ - public ConcurrentMap getStaticRouteConfigs(); + ConcurrentMap getStaticRouteConfigs(); /** * Adds a StaticRouteConfig @@ -44,7 +44,7 @@ public interface IForwardingStaticRouting { * @return a text string indicating the result of the operation.. * If the operation is successful, the return string will be "SUCCESS" */ - public Status addStaticRoute(StaticRouteConfig config); + Status addStaticRoute(StaticRouteConfig config); /** * Removes the named StaticRouteConfig @@ -52,5 +52,5 @@ public interface IForwardingStaticRouting { * @return a text string indicating the result of the operation. * If the operation is successful, the return string will be "SUCCESS" */ - public Status removeStaticRoute(String name); + Status removeStaticRoute(String name); }