manually cherry pick this patch https://git.opendaylight.org/gerrit/#/c/34579/ 91/35291/1
authorMohamed El-Serngawy <melserngawy@inocybe.com>
Tue, 23 Feb 2016 21:15:29 +0000 (16:15 -0500)
committerMohamed El-Serngawy <melserngawy@inocybe.com>
Tue, 23 Feb 2016 21:17:24 +0000 (16:17 -0500)
commitd93c147816b2bc79423eaef57c0bab5f2dd2c0da
tree1a99356f33ecfa4dd78b7ccd8c24410f8e89c2cc
parentc97e168f2c87737c7621fcc1b65eb1bd8e77509e
manually cherry pick this patch https://git.opendaylight.org/gerrit/#/c/34579/
to stable/beryllium

Change-Id: Ib57d37da4e7705a1d931cdd564883ec0024d14c7
Signed-off-by: Mohamed El-Serngawy <melserngawy@inocybe.com>
37 files changed:
impl/src/main/java/org/opendaylight/unimgr/api/AbstractCommand.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/api/IUnimgrDataChangeListener.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/api/UnimgrDataTreeChangeListener.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/command/AbstractCreateCommand.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/AbstractDeleteCommand.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/AbstractUpdateCommand.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/Command.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/EvcAddCommand.java [moved from impl/src/main/java/org/opendaylight/unimgr/command/EvcCreateCommand.java with 80% similarity]
impl/src/main/java/org/opendaylight/unimgr/command/EvcDeleteCommand.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/EvcRemoveCommand.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/command/EvcUpdateCommand.java
impl/src/main/java/org/opendaylight/unimgr/command/OvsNodeAddCommand.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/command/TransactionInvoker.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/UniAddCommand.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/command/UniCreateCommand.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/UniDeleteCommand.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/command/UniRemoveCommand.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/command/UniUpdateCommand.java
impl/src/main/java/org/opendaylight/unimgr/impl/EvcDataTreeChangeListener.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/impl/OvsNodeDataTreeChangeListener.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/impl/UniDataTreeChangeListener.java [new file with mode: 0644]
impl/src/main/java/org/opendaylight/unimgr/impl/UnimgrDataChangeListener.java [deleted file]
impl/src/main/java/org/opendaylight/unimgr/impl/UnimgrProvider.java
impl/src/main/java/org/opendaylight/unimgr/utils/EvcUtils.java
impl/src/main/java/org/opendaylight/unimgr/utils/OvsdbUtils.java
impl/src/test/java/org/opendaylight/unimgr/command/DataTreeModificationHelper.java [new file with mode: 0644]
impl/src/test/java/org/opendaylight/unimgr/command/EvcAddCommandTest.java [moved from impl/src/test/java/org/opendaylight/unimgr/command/EvcCreateCommandTest.java with 85% similarity]
impl/src/test/java/org/opendaylight/unimgr/command/EvcRemoveCommandTest.java [moved from impl/src/test/java/org/opendaylight/unimgr/command/EvcDeleteCommandTest.java with 79% similarity]
impl/src/test/java/org/opendaylight/unimgr/command/EvcUpdateCommandTest.java
impl/src/test/java/org/opendaylight/unimgr/command/UniAddCommandTest.java [moved from impl/src/test/java/org/opendaylight/unimgr/command/UniCreateCommandTest.java with 75% similarity]
impl/src/test/java/org/opendaylight/unimgr/command/UniRemoveCommandTest.java [moved from impl/src/test/java/org/opendaylight/unimgr/command/UniDeleteCommandTest.java with 78% similarity]
impl/src/test/java/org/opendaylight/unimgr/command/UniUpdateCommandTest.java
impl/src/test/java/org/opendaylight/unimgr/impl/EvcDataTreeChangeListenerTest.java [new file with mode: 0644]
impl/src/test/java/org/opendaylight/unimgr/impl/UniDataTreeChangeListenerTest.java [new file with mode: 0644]
impl/src/test/java/org/opendaylight/unimgr/impl/UnimgrDataChangeListenerTest.java [deleted file]
impl/src/test/java/org/opendaylight/unimgr/impl/UnimgrProviderTest.java
it/src/test/java/org/opendaylight/unimgr/it/UnimgrIT.java