2 * Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. and others. All rights reserved.
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
8 package org.opendaylight.vpnservice.mdsalutil.interfaces;
10 import java.math.BigInteger;
11 import java.util.List;
13 import com.google.common.util.concurrent.CheckedFuture;
14 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
15 import org.opendaylight.vpnservice.mdsalutil.ActionInfo;
16 import org.opendaylight.vpnservice.mdsalutil.FlowEntity;
17 import org.opendaylight.vpnservice.mdsalutil.GroupEntity;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.tables.table.Flow;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.groups.Group;
21 public interface IMdsalApiManager {
23 public void installFlow(FlowEntity flowEntity);
25 public CheckedFuture<Void,TransactionCommitFailedException> installFlow(BigInteger dpId, Flow flowEntity);
27 public CheckedFuture<Void,TransactionCommitFailedException> removeFlow(BigInteger dpId, Flow flowEntity);
29 public CheckedFuture<Void,TransactionCommitFailedException> removeFlow(BigInteger dpId, FlowEntity flowEntity);
31 public CheckedFuture<Void,TransactionCommitFailedException> installFlow(BigInteger dpId, FlowEntity flowEntity);
33 public void removeFlow(FlowEntity flowEntity);
35 public void installGroup(GroupEntity groupEntity);
37 public void modifyGroup(GroupEntity groupEntity);
39 public void removeGroup(GroupEntity groupEntity);
41 public void sendPacketOut(BigInteger dpnId, int groupId, byte[] payload);
43 public void sendPacketOutWithActions(BigInteger dpnId, long groupId, byte[] payload, List<ActionInfo> actionInfos);
45 public void sendARPPacketOutWithActions(BigInteger dpnId, byte[] payload, List<ActionInfo> action_info);
48 * API to remove the flow on Data Plane Node synchronously. It internally waits for
49 * Flow Change Notification to confirm flow delete request is being sent with-in delayTime.
54 public void syncRemoveFlow(FlowEntity flowEntity, long delayTime);
55 public void syncInstallFlow(FlowEntity flowEntity, long delayTime);
58 * API to install the Group on Data Plane Node synchronously. It internally waits for
59 * Group Change Notification to confirm group mod request is being sent with-in delayTime
64 public void syncInstallGroup(GroupEntity groupEntity, long delayTime);
66 public void syncInstallGroup(BigInteger dpId, Group group, long delayTime);
69 * API to remove the Group on Data Plane Node synchronously. It internally waits for
70 * Group Change Notification to confirm group delete request is being sent.
74 public void syncRemoveGroup(GroupEntity groupEntity);
76 public void syncRemoveGroup(BigInteger dpId, Group groupEntity);