Merge "Create odl-nsf-service feature, which excludes neutron feature"
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / INeutronPortCRUD.java
1 /*
2  * Copyright IBM Corporation, 2013.  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.controller.networkconfig.neutron;
10
11 import java.util.List;
12
13 /**
14  * This interface defines the methods for CRUD of NB Port objects
15  *
16  * @deprecated Replaced by {@link org.opendaylight.neutron.neutron.spi.INeutronPortCRUD}
17  */
18
19 @Deprecated
20 public interface INeutronPortCRUD {
21     /**
22      * Applications call this interface method to determine if a particular
23      * Port object exists
24      *
25      * @param uuid
26      *            UUID of the Port object
27      * @return boolean
28      */
29
30     public boolean portExists(String uuid);
31
32     /**
33      * Applications call this interface method to return if a particular
34      * Port object exists
35      *
36      * @param uuid
37      *            UUID of the Port object
38      * @return {@link org.opendaylight.controller.networkconfig.neutron.NeutronPort.OpenStackPorts}
39      *          OpenStack Port class
40      */
41
42     public NeutronPort getPort(String uuid);
43
44     /**
45      * Applications call this interface method to return all Port objects
46      *
47      * @return List of OpenStackPorts objects
48      */
49
50     public List<NeutronPort> getAllPorts();
51
52     /**
53      * Applications call this interface method to add a Port object to the
54      * concurrent map
55      *
56      * @param input
57      *            OpenStackPort object
58      * @return boolean on whether the object was added or not
59      */
60
61     public boolean addPort(NeutronPort input);
62
63     /**
64      * Applications call this interface method to remove a Port object to the
65      * concurrent map
66      *
67      * @param uuid
68      *            identifier for the Port object
69      * @return boolean on whether the object was removed or not
70      */
71
72     public boolean removePort(String uuid);
73
74     /**
75      * Applications call this interface method to edit a Port object
76      *
77      * @param uuid
78      *            identifier of the Port object
79      * @param delta
80      *            OpenStackPort object containing changes to apply
81      * @return boolean on whether the object was updated or not
82      */
83
84     public boolean updatePort(String uuid, NeutronPort delta);
85
86     /**
87      * Applications call this interface method to see if a MAC address is in use
88      *
89      * @param macAddress
90      *            mac Address to be tested
91      * @return boolean on whether the macAddress is already associated with a
92      * port or not
93      */
94
95     public boolean macInUse(String macAddress);
96
97     /**
98      * Applications call this interface method to retrieve the port associated with
99      * the gateway address of a subnet
100      *
101      * @param subnetUUID
102      *            identifier of the subnet
103      * @return OpenStackPorts object if the port exists and null if it does not
104      */
105
106     public NeutronPort getGatewayPort(String subnetUUID);
107 }