b700f04b3ee949da1a8259e2c32fb90f0305a895
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / experimenter / ExperimenterActionDeserializerKey.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.ActionDeserializerKey;\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 ExperimenterActionDeserializerKey extends ActionDeserializerKey \r
19         implements ExperimenterDeserializerKey {\r
20 \r
21     /**\r
22      * @param version protocol wire version\r
23      * @param experimenterId experimenter / vendor ID\r
24      */\r
25     public ExperimenterActionDeserializerKey(short version, Long experimenterId) {\r
26         super(version, EncodeConstants.EXPERIMENTER_VALUE, experimenterId);\r
27     }\r
28 \r
29 }