Modify checkstyle maximum parameter count

Bumped up the maximum number of allowed parameters to 10 and
removed various checkstyle suppressions.  To be revisted
when the code that breaks this rule is refactored.

Change-Id: Ibda3f9d4e386ac307c63bffafd56fbe696e9ddf2
diff --git a/src/main/java/net/onrc/onos/core/intent/ShortestPathIntent.java b/src/main/java/net/onrc/onos/core/intent/ShortestPathIntent.java
index 2e2ca8c..1361baa 100644
--- a/src/main/java/net/onrc/onos/core/intent/ShortestPathIntent.java
+++ b/src/main/java/net/onrc/onos/core/intent/ShortestPathIntent.java
@@ -64,11 +64,9 @@
      * @param dstMac Destination Host MAC Address
      * @param dstIp Destination IP Address
      */
-    // CHECKSTYLE:OFF suppress the warning about too many parameters
     public ShortestPathIntent(String id,
             long srcSwitch, long srcPort, long srcMac, int srcIp,
-            long dstSwitch, long dstPort, long dstMac, int dstIp ) {
-        // CHECKSTYLE:ON
+            long dstSwitch, long dstPort, long dstMac, int dstIp) {
         super(id);
         this.srcSwitchDpid = srcSwitch;
         this.srcPortNumber = srcPort;