Use Topology Node in place of Inventory Node
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / MdsalConsumer.java
1 /*
2  * Copyright (c) 2015 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 package org.opendaylight.ovsdb.openstack.netvirt.api;
9
10 import java.net.InetAddress;
11 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
12 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
13 //import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
14
15 /**
16  * MdsalConsumer is the interface to the mdsal for netvirt.
17  *
18  * @author Sam Hague (shague@redhat.com)
19  */
20 public interface MdsalConsumer {
21     //public ConsumerContext getConsumerContext();
22     public static DataBroker dataBroker = null;
23     //public NotificationProviderService getNotificationService();
24     public InetAddress getTunnelEndPoint(Node node);
25     public String getNodeUUID(Node node);
26
27     public String getBridgeUUID (String bridgeName);
28 }