BUG-4283 experimenter msg support - registration part
[openflowplugin.git] / extension / openflowplugin-extension-api / src / main / java / org / opendaylight / openflowplugin / extension / api / ConvertorMessageToOFJava.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. 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 package org.opendaylight.openflowplugin.extension.api;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.experimenter.types.rev151020.experimenter.core.message.ExperimenterMessageOfChoice;
11 import org.opendaylight.yangtools.yang.binding.DataContainer;
12
13 /**
14  * convert message from MD-SAL model into OFJava-API model
15  *
16  * @param <F> input message model - MD-SAL model
17  * @param <T> output message model - OFJava-API
18  */
19 public interface ConvertorMessageToOFJava<F extends ExperimenterMessageOfChoice, T extends DataContainer> {
20
21     /**
22      * @param experimenterMessageCase where is vendor's augmentation
23      * @return message converted to OFJava-API
24      */
25     T convert(F experimenterMessageCase);
26 }