Initial commit for appc-flow-controller bundle 63/7663/10
authorSkip Wonnell <kw5258@att.com>
Tue, 15 Aug 2017 22:26:38 +0000 (17:26 -0500)
committerPatrick Brady <pb071s@att.com>
Thu, 17 Aug 2017 06:15:50 +0000 (06:15 +0000)
commit9296b7674ea71cb86fe2ea99e80d9d055267ae5b
tree399a89d854d3e9474d498173d483abfd08cce051
parent86011b92947fdb0805623a25c893cd59128ec40e
Initial commit for appc-flow-controller bundle

This bundle contains the APPC orchestration control
for the directed graph for model driven transactions

Issue-ID: APPC-73
Change-Id: Ia812fe14b2d6aa46c3acd5b2bfab0c004507c628
Signed-off-by: Skip Wonnell <kw5258@att.com>
57 files changed:
appc-config/appc-flow-controller/.gitignore [new file with mode: 0644]
appc-config/appc-flow-controller/features/.gitignore [new file with mode: 0644]
appc-config/appc-flow-controller/features/pom.xml [new file with mode: 0644]
appc-config/appc-flow-controller/features/src/main/resources/features.xml [new file with mode: 0644]
appc-config/appc-flow-controller/installer/pom.xml [new file with mode: 0644]
appc-config/appc-flow-controller/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
appc-config/appc-flow-controller/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
appc-config/appc-flow-controller/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
appc-config/appc-flow-controller/pom.xml [new file with mode: 0644]
appc-config/appc-flow-controller/provider/.gitignore [new file with mode: 0644]
appc-config/appc-flow-controller/provider/pom.xml [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/FlowControllerActivator.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/ResponseHandlerImpl/DefaultResponseHandler.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/ActionIdentifier.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/Parameters.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/PreCheck.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/PrecheckOption.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/Response.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/ResponseAction.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/Transaction.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/data/Transactions.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/dbervices/FlowControlDBService.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/executorImpl/GraphExecutor.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/executorImpl/NodeExecutor.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/executorImpl/RestExecutor.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/executorImpl/SecureRestClientTrustManager.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/ActionIdentifier.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/Capabilities.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/DependencyInfo.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/Input.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/InventoryInfo.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/ObjectFactory.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/RequestInfo.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/TunableParameters.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/Vm.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/VnfInfo.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/Vnfcs.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/Vnfcslist.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/Vnflist.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaceData/package-info.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/interfaces/FlowExecutorInterface.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/node/FlowControlNode.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/node/FlowGenerator.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/node/JsonParsingNode.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/node/RestServiceNode.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/utils/EscapeUtils.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/java/org/openecomp/appc/flow/controller/utils/FlowControllerConstants.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/resources/appc-flow-controller.properties [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/main/resources/jaxby.properties [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestFlowExecutorNode.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestParsingNode.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/test/java/org/openecomp/appc/flow/executor/node/TestRestServiceNode.java [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/test/resources/Info.out.xml [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/test/resources/svclogic.properties [new file with mode: 0644]
appc-config/appc-flow-controller/provider/src/test/resources/transactionModel.json [new file with mode: 0644]
appc-config/jacoco.exec [deleted file]
appc-config/pom.xml