Initial commit 24/624/1
authorEvan Zeller <evanrzeller@gmail.com>
Mon, 22 Jul 2013 23:56:11 +0000 (19:56 -0400)
committerEvan Zeller <evanrzeller@gmail.com>
Mon, 22 Jul 2013 23:56:11 +0000 (19:56 -0400)
commit6e647f2144828cde261e76b03ac8165a4125f780
tree08906548baed2deb3c998648faec8f4148daef29
parentc2c5430022f4bcb7d6725ff1d9ccf353c1521cf7
Initial commit

Signed-off-by: Evan Zeller <evanrzeller@gmail.com>
43 files changed:
.gitignore [new file with mode: 0755]
commons/.project [new file with mode: 0755]
commons/.settings/org.eclipse.core.resources.prefs [new file with mode: 0755]
commons/.settings/org.eclipse.m2e.core.prefs [new file with mode: 0755]
commons/pom.xml [new file with mode: 0755]
commons/space_and_tabs_checks.xml [new file with mode: 0755]
ovsdb/.classpath [new file with mode: 0755]
ovsdb/.project [new file with mode: 0755]
ovsdb/.settings/org.eclipse.core.resources.prefs [new file with mode: 0755]
ovsdb/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0755]
ovsdb/.settings/org.eclipse.m2e.core.prefs [new file with mode: 0755]
ovsdb/META-INF/MANIFEST.MF [new file with mode: 0755]
ovsdb/pom.xml [new file with mode: 0755]
ovsdb/protocol_plugins.ovsdb.iml [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/OvsdbClient.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/database/ColumnSchema.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/database/DatabaseSchema.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/database/OvsdbType.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/database/TableSchema.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/database/Uuid.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/Activator.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/ConfigurationService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/Connection.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/ConnectionService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/FlowProgrammerService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/IConnectionServiceInternal.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/InsertRequest.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/InventoryService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/JSONMsg.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/MutateRequest.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/NodeConnectorFactory.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/NodeFactory.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/OvsdbIO.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/OvsdbMessage.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/internal/ReadService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/configuration/INetworkConfigurationService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/configuration/IPluginInNetworkConfigurationService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/connection/ConnectionConstants.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/connection/IConnectionListener.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/connection/IConnectionService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/connection/IPluginInConnectionService.java [new file with mode: 0755]
ovsdb/src/main/java/org/opendaylight/ovsdb/sal/connection/IPluginOutConnectionService.java [new file with mode: 0755]
ovsdb/src/test/java/org/opendaylight/ovsdb/OvsdbTestAddBridge.java [new file with mode: 0755]