2524e64e12bac251c2f79fb1fe4ca5e91d4dbafc
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / match / MatchConvertor.java
1 /*
2  * Copyright (c) 2016 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.match;
10
11 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.common.Convertor;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.Match;
13
14 /**
15  * converting from MD-SAL match model into appropriate OF-API match model
16  *
17  * @param <E> type of converted match
18  */
19 public interface MatchConvertor<E> extends Convertor<Match, E> {
20
21     default Class<?> getType() {
22         return Match.class;
23     }
24     
25     /**
26      * @param source match input
27      * @return converted match (into OF-API model)
28      */
29     @Override
30     E convert(Match source);
31 }