Committed by
Gerrit Code Review
Bringing cli commands back to mfwd and pim
Change-Id: I8350f71b67a18fb77c62e0cef8219a93d52770a0
Showing
3 changed files
with
5 additions
and
1 deletions
... | @@ -122,6 +122,8 @@ | ... | @@ -122,6 +122,8 @@ |
122 | com.fasterxml.jackson.databind, | 122 | com.fasterxml.jackson.databind, |
123 | com.fasterxml.jackson.databind.node, | 123 | com.fasterxml.jackson.databind.node, |
124 | org.apache.commons.lang.math.*, | 124 | org.apache.commons.lang.math.*, |
125 | + org.apache.karaf.shell.commands, | ||
126 | + org.apache.karaf.shell.console, | ||
125 | com.google.common.*, | 127 | com.google.common.*, |
126 | org.onlab.packet.*, | 128 | org.onlab.packet.*, |
127 | org.onlab.rest.*, | 129 | org.onlab.rest.*, | ... | ... |
... | @@ -96,6 +96,8 @@ | ... | @@ -96,6 +96,8 @@ |
96 | org.osgi.framework, | 96 | org.osgi.framework, |
97 | org.apache.commons.lang.math.*, | 97 | org.apache.commons.lang.math.*, |
98 | com.google.common.*, | 98 | com.google.common.*, |
99 | + org.apache.karaf.shell.commands, | ||
100 | + org.apache.karaf.shell.console, | ||
99 | org.onlab.packet.*, | 101 | org.onlab.packet.*, |
100 | org.onlab.rest.*, | 102 | org.onlab.rest.*, |
101 | org.onosproject.*, | 103 | org.onosproject.*, | ... | ... |
... | @@ -24,7 +24,7 @@ import org.onosproject.pim.impl.PIMNeighborsCodec; | ... | @@ -24,7 +24,7 @@ import org.onosproject.pim.impl.PIMNeighborsCodec; |
24 | 24 | ||
25 | import java.util.HashMap; | 25 | import java.util.HashMap; |
26 | 26 | ||
27 | -@Command(scope = "onos", name = "pim-show", description = "Displays the pim neighbors") | 27 | +@Command(scope = "onos", name = "pim-neighbors", description = "Displays the pim neighbors") |
28 | public class PIMShowCommand extends AbstractShellCommand { | 28 | public class PIMShowCommand extends AbstractShellCommand { |
29 | 29 | ||
30 | // prints either the json or cli version of the hash map connect point | 30 | // prints either the json or cli version of the hash map connect point | ... | ... |
-
Please register or login to post a comment