Add methods for experimenter (de)serializer registration
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / ExperimenterIdDeserializerKey.java
1 /*
2  * Copyright (c) 2014 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.keys;
10
11 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
12 import org.opendaylight.yangtools.yang.binding.DataContainer;
13
14 /**
15  * @author michal.polkorab
16  */
17 public class ExperimenterIdDeserializerKey extends MessageCodeKey implements ExperimenterDeserializerKey {
18
19     private long experimenterId;
20
21     /**
22      * @param <E> type of target experimenter object
23      * @param version protocol wire version
24      * @param experimenterId experimenter / vendor ID
25      * @param objectClass class of created object
26      */
27     public <E extends DataContainer> ExperimenterIdDeserializerKey(final short version, final long experimenterId,
28                                                                    final Class<E> objectClass) {
29         super(version, EncodeConstants.EXPERIMENTER_VALUE, objectClass);
30         this.experimenterId = experimenterId;
31     }
32
33     protected int hashCodeOfLong(long longValue) {
34         return (int) (longValue ^ (longValue >>> 32));
35     }
36
37     @Override
38     public int hashCode() {
39         final int prime = 31;
40         int result = super.hashCode();
41         result = prime * result + hashCodeOfLong(experimenterId);
42         return result;
43     }
44
45     @Override
46     public boolean equals(Object obj) {
47         if (this == obj) {
48             return true;
49         }
50         if (!super.equals(obj)) {
51             return false;
52         }
53         if (!(obj instanceof ExperimenterIdDeserializerKey)) {
54             return false;
55         }
56         ExperimenterIdDeserializerKey other = (ExperimenterIdDeserializerKey) obj;
57         if (experimenterId != other.experimenterId) {
58             return false;
59         }
60         return true;
61     }
62
63     @Override
64     public String toString() {
65         return super.toString() + " experimenterID: " + experimenterId;
66     }
67 }