NETVIRT-1630 migrate to md-sal APIs
[netvirt.git] / neutronvpn / api / src / main / java / org / opendaylight / netvirt / neutronvpn / interfaces / INeutronVpnManager.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.neutronvpn.interfaces;
10
11 import java.util.Collection;
12 import java.util.List;
13 import java.util.concurrent.ExecutionException;
14 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
15 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.networks.rev150712.networks.attributes.networks.Network;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.ports.rev150712.ports.attributes.ports.Port;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.subnets.rev150712.subnets.attributes.subnets.Subnet;
19
20 public interface INeutronVpnManager {
21
22     List<String> showVpnConfigCLI(Uuid vuuid) throws InterruptedException, ExecutionException;
23
24     List<String> showNeutronPortsCLI() throws ExecutionException, InterruptedException;
25
26     Network getNeutronNetwork(Uuid networkId);
27
28     Port getNeutronPort(String name);
29
30     Subnet getNeutronSubnet(Uuid subnetId);
31
32     Collection<Uuid> getSubnetIdsForGatewayIp(IpAddress ipAddress);
33
34     Uuid getNetworkForSubnet(Uuid subnetId);
35
36     List<Uuid> getNetworksForVpn(Uuid vpnId);
37
38     void programV6InternetFallbackFlow(Uuid routerId, Uuid internetVpnId, int addOrRemove);
39
40 }
41