Merge "OPNFLWPLUG-1000 : Execute reconciliation asynchronously when the user selected...
[openflowplugin.git] / samples / learning-switch / src / main / java / org / opendaylight / openflowplugin / learningswitch / FlowCommitWrapperImpl.java
1 /**
2  * Copyright (c) 2014 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.learningswitch;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
13 import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction;
14 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
16 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
17
18 public class FlowCommitWrapperImpl implements FlowCommitWrapper {
19
20     private final DataBroker dataBrokerService;
21
22     public FlowCommitWrapperImpl(DataBroker dataBrokerService) {
23         this.dataBrokerService = dataBrokerService;
24     }
25
26     @Override
27     public ListenableFuture<Void> writeFlowToConfig(InstanceIdentifier<Flow> flowPath, Flow flowBody) {
28         ReadWriteTransaction addFlowTransaction = dataBrokerService.newReadWriteTransaction();
29         addFlowTransaction.put(LogicalDatastoreType.CONFIGURATION, flowPath, flowBody, true);
30         return addFlowTransaction.submit();
31     }
32
33 }