Skeleton Event handlers for the Neutron integration with OVSDB. 25/3025/1
authorMadhu Venugopal <mavenugo@gmail.com>
Fri, 22 Nov 2013 06:34:45 +0000 (22:34 -0800)
committerMadhu Venugopal <mavenugo@gmail.com>
Fri, 22 Nov 2013 06:34:45 +0000 (22:34 -0800)
commit202a7264e097d1fa64835d51b045f638b1148615
tree1ca5919f75be20ff2ef08e9e52f1e2c9b34dbf02
parentaceac6df7873d5abba75553d8162ffa66483d8a8
Skeleton Event handlers for the Neutron integration with OVSDB.
As per the design, the ovsdb.neutron plugin will be a bunch of event handlers which
converts the events into corresponding OVSDB/OF programming. The 5 events of interests are
1. NeutronNetwork events
2. NeutronPort events
3. NeutronSubnet events
4. Southbound Node Connectivity events
5. Southbound Port table update events
This push just brings in the barebones of these event handlers.

Change-Id: Ic94429672303bee29de0c245558669e9462c0a01
Signed-off-by: Madhu Venugopal <mavenugo@gmail.com>
neutron/pom.xml [new file with mode: 0644]
neutron/src/main/java/org/opendaylight/ovsdb/neutron/Activator.java [new file with mode: 0644]
neutron/src/main/java/org/opendaylight/ovsdb/neutron/BaseHandler.java [new file with mode: 0644]
neutron/src/main/java/org/opendaylight/ovsdb/neutron/NetworkHandler.java [new file with mode: 0644]
neutron/src/main/java/org/opendaylight/ovsdb/neutron/PortHandler.java [new file with mode: 0644]
neutron/src/main/java/org/opendaylight/ovsdb/neutron/SouthboundHandler.java [new file with mode: 0644]
neutron/src/main/java/org/opendaylight/ovsdb/neutron/SubnetHandler.java [new file with mode: 0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/InventoryService.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/OVSDBInventoryListener.java [new file with mode: 0644]