ae12b0eecf1a07af39aded103898849de802e119
[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 java.util.concurrent.Future;
12
13 import org.opendaylight.controller.md.sal.common.api.TransactionStatus;
14 import org.opendaylight.controller.sal.binding.api.data.DataBrokerService;
15 import org.opendaylight.controller.sal.binding.api.data.DataModificationTransaction;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
17 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
18 import org.opendaylight.yangtools.yang.common.RpcResult;
19
20 /**
21  * 
22  */
23 public class FlowCommitWrapperImpl implements FlowCommitWrapper {
24     
25     private DataBrokerService dataBrokerService;
26
27     /**
28      * @param dataBrokerService
29      */
30     public FlowCommitWrapperImpl(DataBrokerService dataBrokerService) {
31         this.dataBrokerService = dataBrokerService;
32     }
33
34     @Override
35     public Future<RpcResult<TransactionStatus>> writeFlowToConfig(InstanceIdentifier<Flow> flowPath, 
36             Flow flowBody) {
37         DataModificationTransaction addFlowTransaction = dataBrokerService.beginTransaction();
38         addFlowTransaction.putConfigurationData(flowPath, flowBody);
39         return addFlowTransaction.commit();
40     }
41
42 }