Revert "Removing ovsdb plugin dependency on sal.utils classes"
[netvirt.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / NetworkingProvider.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
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  *  Authors : Dave Tucker
9  */
10
11 package org.opendaylight.ovsdb.openstack.netvirt.api;
12
13 import org.opendaylight.controller.networkconfig.neutron.NeutronNetwork;
14 import org.opendaylight.controller.sal.core.Node;
15 import org.opendaylight.controller.sal.utils.Status;
16 import org.opendaylight.ovsdb.schema.openvswitch.Interface;
17
18 /**
19  * The NetworkingProvider interface is implemented by Neutron Networking Providers
20  */
21 public interface NetworkingProvider {
22
23     /**
24      * Returns the name of the NetworkingProvider
25      */
26     public String getName();
27
28     /**
29      * Return true if the provider supports Network Service Instances
30      */
31     public boolean supportsServices();
32
33     /**
34      * Return true if the provider supports per-tenant or "static" tunneling
35      */
36     public boolean hasPerTenantTunneling();
37
38     /**
39      * Handle Interface Update Callback Method
40      */
41     public Status handleInterfaceUpdate(String tunnelType, String tunnelKey);
42
43     /**
44      * Handle Interface Update Callback Method
45      */
46     public Status handleInterfaceUpdate(NeutronNetwork network, Node source, Interface intf);
47
48     /**
49      * Handle Interface Delete Callback Method
50      */
51     public Status handleInterfaceDelete(String tunnelType, NeutronNetwork network, Node source, Interface intf, boolean isLastInstanceOnNode);
52
53     /**
54      * Initialize the Flow rules given the OVSDB node.
55      * This method provides a set of common functionalities to initialize the Flow rules of an OVSDB node
56      * that are Openflow Version specific. Hence we have this method in addition to the following
57      * Openflow Node specific initialization method.
58      */
59     public void initializeFlowRules(Node node);
60
61     /**
62      * Initialize the Flow rules for a given OpenFlow node
63      */
64     public void initializeOFFlowRules(Node openflowNode);
65
66 }