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