989e1ba769a8d3d2a8dfe653191406c8df897b49
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / experimenter / ExperimenterActionSerializerKey.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.ActionSerializerKey;\r
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.Experimenter;\r
13 \r
14 /**\r
15  * @author michal.polkorab\r
16  */\r
17 public final class ExperimenterActionSerializerKey extends ActionSerializerKey<Experimenter> \r
18         implements ExperimenterSerializerKey {\r
19 \r
20     /**\r
21      * @param msgVersion protocol wire version\r
22      * @param experimenterId experimenter / vendor ID\r
23      */\r
24     public ExperimenterActionSerializerKey(short msgVersion, Long experimenterId) {\r
25         super(msgVersion, Experimenter.class, experimenterId);\r
26     }\r
27 \r
28 }