public interface INeutronCRUD<T extends INeutronObject>
Modifier and Type | Method and Description |
---|---|
boolean |
add(T input)
Applications call this interface method to add a Neutron object to the
concurrent map
|
boolean |
exists(String uuid)
Applications call this interface method to determine if a particular
Neutron object exists
|
T |
get(String uuid)
Applications call this interface method to return if a particular
Neutron object exists
|
List<T> |
getAll()
Applications call this interface method to return all Neutron objects
|
boolean |
inUse(String uuid)
Applications call this interface method to determine if a Neutron object
is use
|
boolean |
remove(String uuid)
Applications call this interface method to remove a Neutron object to the
concurrent map
|
boolean |
update(String uuid,
T delta)
Applications call this interface method to edit a Neutron object
|
boolean exists(String uuid)
uuid
- UUID of the Neutron objectT get(String uuid)
uuid
- UUID of the Neutron objectINeutronObject
OpenStack Neutron classList<T> getAll()
boolean add(T input)
input
- OpenStackNeutron objectboolean remove(String uuid)
uuid
- identifier for the neutron objectboolean update(String uuid, T delta)
uuid
- identifier of the neutron objectdelta
- OpenStackNeutron object containing changes to applyboolean inUse(String uuid)
uuid
- identifier of the neutron objectCopyright © 2017 OpenDaylight. All rights reserved.