Fix most bgp-parser-spi checkstyle violations
[bgpcep.git] / bgp / parser-spi / src / main / java / org / opendaylight / protocol / bgp / parser / spi / MultiPathSupport.java
index 4af953d7660159b3c0ac81df0a48108bd5cf8423..fe32a9d840a5d1c30d2901d2506cc70693d315df 100644 (file)
@@ -5,22 +5,19 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.protocol.bgp.parser.spi;
 
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.BgpTableType;
 
 /**
- * Holds user specific add-path constraints per AFI/SAFI (table type)
- *
+ * Holds user specific add-path constraints per AFI/SAFI (table type).
  */
 public interface MultiPathSupport extends PeerConstraint {
-
     /**
      * Check if requested AFI/SAFI is supported.
-     * @param tableType
+     *
+     * @param tableType Table type to check
      * @return True if the table type is supported.
      */
     boolean isTableTypeSupported(BgpTableType tableType);
-
 }