Fix Jdk8 compatibility
[openflowplugin.git] / applications / statistics-manager / src / main / java / org / opendaylight / openflowplugin / applications / statistics / manager / StatNodeRegistration.java
index ffd8132cf381282a7fb7f51bda48799a2f8eaf06..178befea06e3124014fee016a0e8b108ce0b5d6b 100644 (file)
@@ -34,9 +34,9 @@ public interface StatNodeRegistration extends OpendaylightInventoryListener, Aut
      * as a prevention to use a validation check to the Operational/DS for identify
      * connected {@link org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode}.
      *
-     * @param InstanceIdentifier<SwitchFeatures> keyIdent
-     * @param FlowCapableNode data
-     * @param InstanceIdentifier<Node> nodeIdent
+     * @param keyIdent
+     * @param data
+     * @param nodeIdent
      */
     void connectFlowCapableNode(InstanceIdentifier<SwitchFeatures> keyIdent,
             SwitchFeatures data, InstanceIdentifier<Node> nodeIdent);
@@ -44,7 +44,7 @@ public interface StatNodeRegistration extends OpendaylightInventoryListener, Aut
     /**
      * Method cut {@link Node} registration for {@link StatPermCollector}
      *
-     * @param InstanceIdentifier<Node> keyIdent
+     * @param keyIdent
      */
     void disconnectFlowCapableNode(InstanceIdentifier<Node> keyIdent);
 }