cfe995692ddad3b2f40daeec9177567687455c4b
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / experimenter / ExperimenterInstructionDeserializerKey.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.keys.experimenter;\r
10 \r
11 import org.opendaylight.openflowjava.protocol.api.keys.InstructionDeserializerKey;\r
12 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
13 \r
14 /**\r
15  * @author michal.polkorab\r
16  *\r
17  */\r
18 public final class ExperimenterInstructionDeserializerKey extends InstructionDeserializerKey\r
19         implements ExperimenterDeserializerKey {\r
20 \r
21     /**\r
22      * @param version protocol wire version\r
23      * @param experimenterId \r
24      */\r
25     public ExperimenterInstructionDeserializerKey(short version, Long experimenterId) {\r
26         super(version, EncodeConstants.EXPERIMENTER_VALUE, experimenterId);\r
27     }\r
28 \r
29 }