Bug 2756 - Instruction model update
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / ExperimenterInstructionSerializerKey.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.yang.gen.v1.urn.opendaylight.openflow.augments.rev150225.instruction.container.instruction.choice.ExperimenterIdCase;
12
13 /**
14  * @author michal.polkorab
15  */
16 public final class ExperimenterInstructionSerializerKey extends InstructionSerializerKey<ExperimenterIdCase>
17         implements ExperimenterSerializerKey {
18
19     /**
20      * @param msgVersion protocol wire version
21      * @param experimenterId experimenter / vendor ID
22      */
23     public ExperimenterInstructionSerializerKey(short msgVersion, Long experimenterId) {
24         super(msgVersion, ExperimenterIdCase.class, experimenterId);
25     }
26
27 }