Remove redundant names in paths
[netvirt.git] / vpnmanager / api / src / main / java / org / opendaylight / netvirt / vpnmanager / api / IVpnFootprintService.java
1 /*
2  * Copyright (c) 2017 Red Hat, 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.netvirt.vpnmanager.api;
10
11 import java.math.BigInteger;
12 import org.apache.commons.lang3.tuple.ImmutablePair;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.l3vpn.rev130911.vpn.instance.op.data.vpn.instance.op.data.entry.vpn.to.dpn.list.IpAddresses;
14
15 public interface IVpnFootprintService {
16
17     /**
18      * Updates the footprint that a VPN has on a given DPN by adding/removing
19      * the specified interface.
20      *
21      * @param dpId DPN where the VPN interface belongs to
22      * @param vpnName Name of the VPN whose footprint is being modified
23      * @param interfaceName Name of the VPN interface to be added/removed to/from the specified DPN
24      * @param add true for addition, false for removal
25      */
26     void updateVpnToDpnMapping(BigInteger dpId, String vpnName, String primaryRd, String interfaceName,
27             ImmutablePair<IpAddresses.IpAddressSource, String> ipAddressSourceValuePair, boolean add);
28 }