Bug 2245 - Changed type parameters to comply with naming conventions
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / InstructionSerializerKey.java
index 73d0f1530dee2610ee05fb489c5e7b7b14c865f8..4da4489e4271d6ac47d8c03bb1c861eb99edf00b 100644 (file)
@@ -14,12 +14,12 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev13
 
 /**
  * @author michal.polkorab
- * @param <TYPE> action type
+ * @param <T> instruction type
  */
-public class InstructionSerializerKey<TYPE extends InstructionBase>
+public class InstructionSerializerKey<T extends InstructionBase>
         extends MessageTypeKey<Instruction>{
 
-    private Class<TYPE> instructionType;
+    private Class<T> instructionType;
     private Long experimenterId;
 
     /**
@@ -28,7 +28,7 @@ public class InstructionSerializerKey<TYPE extends InstructionBase>
      * @param instructionType type of instruction
      * @param experimenterId experimenter / vendor ID
      */
-    public InstructionSerializerKey(short msgVersion, Class<TYPE> instructionType,
+    public InstructionSerializerKey(short msgVersion, Class<T> instructionType,
             Long experimenterId) {
         super(msgVersion, Instruction.class);
         this.instructionType = instructionType;