Bug 5540 - ConvertorManager DataContainer source, one Convertor interface
[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.openflowplugin.openflow.md.core.sal.convertor.data.VersionConvertorData;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.Match;
14 import org.opendaylight.yangtools.yang.binding.DataContainer;
15
16 /**
17  * converting from MD-SAL match model into appropriate OF-API match model
18  *
19  * @param <E> type of converted match
20  */
21 public interface MatchConvertor<E> extends Convertor<Match, E, VersionConvertorData> {
22
23     @Override
24     default Class<? extends DataContainer> getType() {
25         return Match.class;
26     }
27
28     @Override
29     default E convert(Match source, VersionConvertorData data) {
30         return convert(source);
31     }
32     
33     /**
34      * @param source match input
35      * @return converted match (into OF-API model)
36      */
37     E convert(Match source);
38 }