learning switch shifted to new data broker API
[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.CheckedFuture;
12 import java.util.concurrent.Future;
13 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
14 import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction;
15 import org.opendaylight.controller.md.sal.common.api.TransactionStatus;
16 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
17 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
19 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
20 import org.opendaylight.yangtools.yang.common.RpcResult;
21
22 /**
23  *
24  */
25 public class FlowCommitWrapperImpl implements FlowCommitWrapper {
26
27     private DataBroker dataBrokerService;
28
29     /**
30      * @param dataBrokerService
31      */
32     public FlowCommitWrapperImpl(DataBroker dataBrokerService) {
33         this.dataBrokerService = dataBrokerService;
34     }
35
36     @Override
37     public CheckedFuture<Void, TransactionCommitFailedException> writeFlowToConfig(InstanceIdentifier<Flow> flowPath,
38                                                                   Flow flowBody) {
39         ReadWriteTransaction addFlowTransaction = dataBrokerService.newReadWriteTransaction();
40         addFlowTransaction.put(LogicalDatastoreType.CONFIGURATION, flowPath, flowBody);
41         return addFlowTransaction.submit();
42     }
43
44 }