Updated extension registration keys
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / extensibility / keys / InstructionSerializerKey.java
1 /*\r
2  * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.openflowjava.protocol.api.extensibility.keys;\r
10 \r
11 import org.opendaylight.openflowjava.protocol.api.extensibility.MessageTypeKey;\r
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;\r
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.InstructionBase;\r
14 \r
15 /**\r
16  * @author michal.polkorab\r
17  * @param <TYPE> action type\r
18  */\r
19 public class InstructionSerializerKey<TYPE extends InstructionBase>\r
20         extends MessageTypeKey<Instruction>{\r
21 \r
22     private Class<TYPE> instructionType;\r
23     private Long experimenterId;\r
24 \r
25     /**\r
26      * @param msgVersion protocol wire version\r
27      * @param objectType class of serialized object (Instruction.class)\r
28      * @param instructionType type of instruction\r
29      * @param experimenterId experimenter / vendor ID\r
30      */\r
31     public InstructionSerializerKey(short msgVersion, Class<TYPE> instructionType,\r
32             Long experimenterId) {\r
33         super(msgVersion, Instruction.class);\r
34         this.instructionType = instructionType;\r
35         this.experimenterId = experimenterId;\r
36     }\r
37 \r
38     @Override\r
39     public boolean equals(Object obj) {\r
40         if (this == obj)\r
41             return true;\r
42         if (!super.equals(obj))\r
43             return false;\r
44         if (getClass() != obj.getClass())\r
45             return false;\r
46         @SuppressWarnings("rawtypes")\r
47         InstructionSerializerKey other = (InstructionSerializerKey) obj;\r
48         if (instructionType == null) {\r
49             if (other.instructionType != null)\r
50                 return false;\r
51         } else if (!instructionType.equals(other.instructionType))\r
52             return false;\r
53         if (experimenterId == null) {\r
54             if (other.experimenterId != null)\r
55                 return false;\r
56         } else if (!experimenterId.equals(other.experimenterId))\r
57             return false;\r
58         return true;\r
59     }\r
60 \r
61     @Override\r
62     public String toString() {\r
63         return super.toString() + " instructionType type: " + instructionType.getName()\r
64                 + " vendorID: " + experimenterId;\r
65     }\r
66 }