Add initial nemo-tools structure and sandbox implementation. 85/31885/1
authorZhigang Ji <jizhigang@huawei.com>
Sat, 26 Dec 2015 05:36:42 +0000 (13:36 +0800)
committerZhigang Ji <jizhigang@huawei.com>
Sat, 26 Dec 2015 05:39:03 +0000 (13:39 +0800)
commit919b8abb1e2b54cc7818e489e197f97e3c77d93c
tree51477f5be6978d5334e6d1243d04f86d446382be
parent109daaaff8ccfc4afec866cbf4bfb85170647451
Add initial nemo-tools structure and sandbox implementation.

Change-Id: Icfbe6b99d80ca75d574140c11f091fa123177349
Signed-off-by: Zhigang Ji <jizhigang@huawei.com>
35 files changed:
nemo-tools/pom.xml [new file with mode: 0644]
nemo-tools/sandbox/build.sh [new file with mode: 0644]
nemo-tools/sandbox/conf/Network [new file with mode: 0644]
nemo-tools/sandbox/conf/log4j.properties [new file with mode: 0644]
nemo-tools/sandbox/conf/sandbox.properties [new file with mode: 0644]
nemo-tools/sandbox/pom.xml [new file with mode: 0644]
nemo-tools/sandbox/run.sh [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/Cli.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/CmdExecutor.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/EasyCli.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/ISandboxManager.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/Main.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/SandBoxManager.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Cache.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Connector.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Firewall.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Host.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Link.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Network.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Node.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/NodeType.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Router.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/Switch.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/models/VirtualMachine.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/northbound/CreateRequest.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/northbound/ExecuteRequest.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/northbound/RestServer.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/northbound/SandboxNorthbound.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/utils/Config.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/utils/FileUtils.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/utils/HexString.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/java/org/opendaylight/nemo/tool/sandbox/utils/PropertyLoader.java [new file with mode: 0644]
nemo-tools/sandbox/src/main/resources/Network [new file with mode: 0644]
nemo-tools/sandbox/src/main/resources/log4j.properties [new file with mode: 0644]
nemo-tools/sandbox/src/main/resources/sandbox.properties [new file with mode: 0644]