Added a CODEC for the MRIB to be used by CLI and REST API

Change-Id: Ia57c2862a642f037b2098c4d143822b2d199bc07
diff --git a/apps/mfwd/src/main/java/org/onosproject/mfwd/cli/McastDeleteCommand.java b/apps/mfwd/src/main/java/org/onosproject/mfwd/cli/McastDeleteCommand.java
index ded5a1a..ae5d9e9 100644
--- a/apps/mfwd/src/main/java/org/onosproject/mfwd/cli/McastDeleteCommand.java
+++ b/apps/mfwd/src/main/java/org/onosproject/mfwd/cli/McastDeleteCommand.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014-2015 Open Networking Laboratory
+ * Copyright 2015 Open Networking Laboratory
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,11 +18,10 @@
 import org.apache.karaf.shell.commands.Argument;
 import org.apache.karaf.shell.commands.Command;
 import org.onosproject.cli.AbstractShellCommand;
-
 import org.onosproject.mfwd.impl.McastRouteTable;
 
 /**
- * Delete a multicast route.
+ * Deletes a multicast route.
  */
 @Command(scope = "onos", name = "mcast-delete",
         description = "Delete a multicast route flow")
@@ -43,5 +42,4 @@
         McastRouteTable mrib = McastRouteTable.getInstance();
         mrib.removeRoute(sAddr, gAddr);
     }
-}
-
+}
\ No newline at end of file