4583a15587c2ee7d45dcfd5e0a636ea8b7068ef8
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / common / Convertor.java
1 /**
2  * Copyright (c) 2013 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
9 package org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.common;
10
11 import java.math.BigInteger;
12
13
14 /**
15  * converting from MD-SAL model into appropriate OF-API model
16  * @param <FROM>  type of source
17  * @param <TO>  type of result
18  */
19 public interface Convertor<FROM, TO> {
20     
21     /**
22      * @param source source type
23      * @param datapathid  datapath id
24      * @return converted match (into OF-API model)
25      */
26     TO convert(FROM source,BigInteger datapathid);
27 }