Added missing extension registration methods + keys (serialization part)
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / extensibility / MessageTypeKey.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.api.extensibility;
10
11
12 /**
13  * Class used as a key in {@link SerializerRegistry}
14  * @author michal.polkorab
15  * @author timotej.kubas
16  * @param <E> message type (class)
17  */
18 public class MessageTypeKey<E> {
19
20     private final Class<? extends E> msgType;
21     private final short msgVersion;
22     
23     /**
24      * @param msgVersion protocol version
25      * @param msgType type of message - class of serialized object
26      */
27     public MessageTypeKey(short msgVersion, Class<? extends E> msgType) {
28         this.msgType = msgType;
29         this.msgVersion = msgVersion;
30     }
31     
32     @Override
33     public String toString() {
34         return "msgVersion: " + msgVersion + " objectType: " + msgType.getName();
35     }
36
37     @Override
38     public int hashCode() {
39         final int prime = 31;
40         int result = 1;
41         result = prime * result + ((msgType == null) ? 0 : msgType.hashCode());
42         result = prime * result + msgVersion;
43         return result;
44     }
45
46     @Override
47     public boolean equals(Object obj) {
48         if (this == obj)
49             return true;
50         if (obj == null)
51             return false;
52         if (!(obj instanceof MessageTypeKey))
53             return false;
54         MessageTypeKey<?> other = (MessageTypeKey<?>) obj;
55         if (msgType == null) {
56             if (other.msgType != null)
57                 return false;
58         } else if (!msgType.equals(other.msgType))
59             return false;
60         if (msgVersion != other.msgVersion)
61             return false;
62         return true;
63     }
64  
65 }