Bug 5540 - PacketOutConvertor
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / flowflag / FlowFlagsConvertorV10Impl.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.FlowConvertor;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.FlowModFlagsV10;
13
14 /**
15  * 
16  */
17 public class FlowFlagsConvertorV10Impl implements FlowFlagConvertor<FlowModFlagsV10> {
18
19     @Override
20     public FlowModFlagsV10 convert(
21             org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.FlowModFlags source) {
22     
23         FlowModFlagsV10 ofFlowModFlags = null;
24         if (source != null) {
25             ofFlowModFlags = new FlowModFlagsV10(
26                     source.isCHECKOVERLAP(), FlowConvertor.DEFAULT_OFPFF_EMERGENCY, source.isSENDFLOWREM());
27         } else {
28             ofFlowModFlags = new FlowModFlagsV10(
29                     FlowConvertor.DEFAULT_OFPFF_CHECK_OVERLAP, 
30                     FlowConvertor.DEFAULT_OFPFF_EMERGENCY, 
31                     FlowConvertor.DEFAULT_OFPFF_FLOW_REM);
32         }
33         
34         return ofFlowModFlags;
35     }
36 }