Initial commit for OpenECOMP SDN-C N-C core 41/441/1
authorDan Timoney <dtimoney@att.com>
Wed, 15 Feb 2017 19:30:39 +0000 (14:30 -0500)
committerDan Timoney <dtimoney@att.com>
Wed, 15 Feb 2017 19:37:01 +0000 (14:37 -0500)
commitd8861011dc81160df81979d2bed9721447517f45
tree6aaf805a83ad8be93bd9772a2b2e517770c67b72
parent57b0ded28b8c6477ca0df13a05eafb392f6fa82e
Initial commit for OpenECOMP SDN-C N-C core

Change-Id: I30c52795ab821c4fdd18b55d202f10a76a01acfa
Signed-off-by: Dan Timoney <dtimoney@att.com>
200 files changed:
.gitignore [new file with mode: 0755]
.gitreview [new file with mode: 0644]
LICENSE.txt [new file with mode: 0644]
README.md [new file with mode: 0644]
dblib/.gitignore [new file with mode: 0755]
dblib/README.md [new file with mode: 0755]
dblib/features/pom.xml [new file with mode: 0755]
dblib/features/src/main/resources/features.xml [new file with mode: 0755]
dblib/installer/pom.xml [new file with mode: 0755]
dblib/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0755]
dblib/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0755]
dblib/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
dblib/pom.xml [new file with mode: 0755]
dblib/provider/pom.xml [new file with mode: 0755]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/CachedDataSource.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/CachedDataSourceFactory.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DBConfigException.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DBLIBResourceActivator.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DBLibException.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DBResourceManager.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DBResourceObserver.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DataAccessor.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DataSourceComparator.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DbLibService.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/DblibConfigurationException.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/TerminatingCachedDataSource.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/config/BaseDBConfiguration.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/config/DbConfigPool.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/config/JDBCConfiguration.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/config/JndiConfiguration.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/factory/AbstractDBResourceManagerFactory.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/factory/AbstractResourceManagerFactory.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/factory/DBConfigFactory.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/factory/FactoryNotDefinedException.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/jdbc/JdbcDbResourceManagerFactory.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/jdbc/MySQLCachedDataSource.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/jndi/JNDIDbResourceManagerFactory.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/jndi/JndiCachedDataSource.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/pm/PollingWorker.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/pm/SQLExecutionMonitor.java [new file with mode: 0644]
dblib/provider/src/main/java/org/openecomp/sdnc/sli/resource/dblib/pm/SQLExecutionMonitorObserver.java [new file with mode: 0644]
dblib/provider/src/main/resources/dblib.properties [new file with mode: 0755]
dblib/provider/src/test/resources/dblib.properties [new file with mode: 0755]
example-settings.xml [new file with mode: 0644]
filters/.gitignore [new file with mode: 0755]
filters/.sonar/checkstyle.xml [new file with mode: 0755]
filters/.sonar/pmd.xml [new file with mode: 0755]
filters/README [new file with mode: 0755]
filters/features/pom.xml [new file with mode: 0755]
filters/features/src/main/resources/features.xml [new file with mode: 0644]
filters/installer/pom.xml [new file with mode: 0755]
filters/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
filters/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
filters/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
filters/pom.xml [new file with mode: 0644]
filters/provider/pom.xml [new file with mode: 0755]
filters/provider/src/main/java/org/openecomp/sdnc/filters/Activator.java [new file with mode: 0644]
filters/provider/src/main/java/org/openecomp/sdnc/filters/LogFilter.java [new file with mode: 0644]
filters/provider/src/main/java/org/openecomp/sdnc/filters/RequestResponseLoggingFilter.java [new file with mode: 0644]
jenkins-settings.xml [new file with mode: 0644]
pom.xml [new file with mode: 0755]
rootpom/pom.xml [new file with mode: 0755]
rootpom/src/site/site.xml [new file with mode: 0644]
rootpom/src/site/site_en.xml [new file with mode: 0644]
sli/.gitignore [new file with mode: 0755]
sli/common/pom.xml [new file with mode: 0755]
sli/common/src/main/antlr4/org/openecomp/sdnc/sli/ExprGrammar.g4 [new file with mode: 0755]
sli/common/src/main/java/org/openecomp/sdnc/sli/ConfigurationException.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/DuplicateValueException.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/MetricLogger.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicAdaptor.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicAtom.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicBinaryExpression.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicContext.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicDblibStore.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicException.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicExprListener.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicExprParserErrorListener.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicExpression.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicExpressionFactory.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicFunctionCall.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicGraph.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicJavaPlugin.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicJdbcStore.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicNode.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicParser.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicParserException.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicRecorder.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicResource.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicStore.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicStoreFactory.java [new file with mode: 0644]
sli/common/src/main/java/org/openecomp/sdnc/sli/SvcLogicVariableTerm.java [new file with mode: 0644]
sli/common/src/main/resources/crAseNetwork.sql [new file with mode: 0644]
sli/common/src/main/resources/svclogic.xsd [new file with mode: 0755]
sli/common/src/main/yang/ase-network.yang [new file with mode: 0755]
sli/common/src/main/yang/ase-type.yang [new file with mode: 0755]
sli/common/src/main/yang/ase.yang [new file with mode: 0755]
sli/common/src/test/java/org/openecomp/sdnc/sli/SvcLogicContextTest.java [new file with mode: 0644]
sli/common/src/test/java/org/openecomp/sdnc/sli/SvcLogicExpressionParserTest.java [new file with mode: 0644]
sli/common/src/test/java/org/openecomp/sdnc/sli/SvcLogicParserTest.java [new file with mode: 0644]
sli/common/src/test/resources/EvcActivateSvcLogic_v100.xml [new file with mode: 0644]
sli/common/src/test/resources/EvcPortSvcLogic_v100.xml [new file with mode: 0644]
sli/common/src/test/resources/ReleasePortSvcLogic_v101.xml [new file with mode: 0644]
sli/common/src/test/resources/bad_neutron_logic_v11.xml [new file with mode: 0644]
sli/common/src/test/resources/expression.tests [new file with mode: 0755]
sli/common/src/test/resources/mergetest.xml [new file with mode: 0644]
sli/common/src/test/resources/neutron_logic_v10.xml [new file with mode: 0644]
sli/common/src/test/resources/nonsense.xml [new file with mode: 0644]
sli/common/src/test/resources/parser-bad.tests [new file with mode: 0755]
sli/common/src/test/resources/parser-good.tests [new file with mode: 0755]
sli/common/src/test/resources/simplelogger.properties [new file with mode: 0644]
sli/common/src/test/resources/svclogic.properties [new file with mode: 0644]
sli/common/src/test/resources/svclogic.sh [new file with mode: 0644]
sli/common/src/test/resources/svclogic.xsd [new file with mode: 0755]
sli/features/pom.xml [new file with mode: 0755]
sli/features/src/main/resources/features.xml [new file with mode: 0644]
sli/installer/pom.xml [new file with mode: 0755]
sli/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
sli/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
sli/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
sli/pom.xml [new file with mode: 0755]
sli/provider/pom.xml [new file with mode: 0755]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/BlockNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/CallNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ConfigureNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/DeleteNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ExecuteNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ExistsNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ForNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/GetResourceNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/IsAvailableNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/MdsalHelper.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/NotifyNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/RecordNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ReleaseNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ReserveNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/ReturnNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SaveNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SetNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SvcLogicActivator.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SvcLogicAdaptorFactory.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SvcLogicExpressionResolver.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SvcLogicNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SvcLogicService.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SvcLogicServiceImpl.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/SwitchNodeExecutor.java [new file with mode: 0644]
sli/provider/src/main/java/org/openecomp/sdnc/sli/provider/UpdateNodeExecutor.java [new file with mode: 0644]
sli/provider/src/test/java/org/openecomp/sdnc/sli/provider/SvcLogicExpressionResolverTest.java [new file with mode: 0644]
sli/provider/src/test/java/org/openecomp/sdnc/sli/provider/SvcLogicGraphExecutorTest.java [new file with mode: 0644]
sli/provider/src/test/resources/executor.tests [new file with mode: 0755]
sli/provider/src/test/resources/expression.tests [new file with mode: 0755]
sli/provider/src/test/resources/l3sdn_logic_v10.xml [new file with mode: 0644]
sli/provider/src/test/resources/simplelogger.properties [new file with mode: 0644]
sli/provider/src/test/resources/svclogic.properties [new file with mode: 0644]
sli/recording/pom.xml [new file with mode: 0755]
sli/recording/src/main/java/org/openecomp/sdnc/sli/recording/FileRecorder.java [new file with mode: 0644]
sli/recording/src/main/java/org/openecomp/sdnc/sli/recording/RecordingActivator.java [new file with mode: 0644]
sli/recording/src/main/java/org/openecomp/sdnc/sli/recording/Slf4jRecorder.java [new file with mode: 0644]
sli/recording/src/main/resources/svclogic.properties [new file with mode: 0644]
sliPluginUtils/.gitignore [new file with mode: 0755]
sliPluginUtils/.sonar/checkstyle.xml [new file with mode: 0755]
sliPluginUtils/.sonar/pmd.xml [new file with mode: 0755]
sliPluginUtils/features/pom.xml [new file with mode: 0755]
sliPluginUtils/features/src/main/resources/features.xml [new file with mode: 0644]
sliPluginUtils/installer/pom.xml [new file with mode: 0755]
sliPluginUtils/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
sliPluginUtils/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
sliPluginUtils/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
sliPluginUtils/pom.xml [new file with mode: 0755]
sliPluginUtils/provider/pom.xml [new file with mode: 0755]
sliPluginUtils/provider/src/main/java/org/openecomp/sdnc/sli/SliPluginUtils/SliPluginUtils.java [new file with mode: 0644]
sliPluginUtils/provider/src/main/java/org/openecomp/sdnc/sli/SliPluginUtils/SliPluginUtilsActivator.java [new file with mode: 0644]
sliPluginUtils/provider/src/main/java/org/openecomp/sdnc/sli/SliPluginUtils/SvcLogicContextList.java [new file with mode: 0644]
sliPluginUtils/provider/src/main/java/org/openecomp/sdnc/sli/SliPluginUtils/SvcLogicContextObject.java [new file with mode: 0644]
sliPluginUtils/provider/src/main/java/org/openecomp/sdnc/sli/SliPluginUtils/commondatastructures/YesNo.java [new file with mode: 0644]
sliPluginUtils/provider/src/main/java/org/openecomp/sdnc/sli/SliPluginUtils/commondatastructures/package-info.java [new file with mode: 0644]
sliPluginUtils/provider/src/test/java/org/openecomp/sdnc/sli/SliPluginUtils/SliPluginUtils_StaticFunctions.java [new file with mode: 0644]
sliPluginUtils/provider/src/test/java/org/openecomp/sdnc/sli/SliPluginUtils/SliPluginUtils_ctxSortList.java [new file with mode: 0644]
sliPluginUtils/provider/src/test/java/org/openecomp/sdnc/sli/SliPluginUtils/SvcLogicContextListTest.java [new file with mode: 0644]
sliapi/.gitignore [new file with mode: 0755]
sliapi/README.txt [new file with mode: 0755]
sliapi/features/pom.xml [new file with mode: 0755]
sliapi/features/src/main/resources/features.xml [new file with mode: 0644]
sliapi/installer/pom.xml [new file with mode: 0755]
sliapi/installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
sliapi/installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
sliapi/installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
sliapi/model/pom.xml [new file with mode: 0755]
sliapi/model/src/main/yang/sliapi.yang [new file with mode: 0755]
sliapi/pom.xml [new file with mode: 0755]
sliapi/provider/pom.xml [new file with mode: 0755]
sliapi/provider/src/main/java/org/opendaylight/yang/gen/v1/org/openecomp/sdnc/sliapi/provider/impl/rev140523/SliapiProviderModule.java [new file with mode: 0644]
sliapi/provider/src/main/java/org/opendaylight/yang/gen/v1/org/openecomp/sdnc/sliapi/provider/impl/rev140523/SliapiProviderModuleFactory.java [new file with mode: 0644]
sliapi/provider/src/main/java/org/openecomp/sdnc/sliapi/SliapiHelper.java [new file with mode: 0644]
sliapi/provider/src/main/java/org/openecomp/sdnc/sliapi/sliapiProvider.java [new file with mode: 0644]
sliapi/provider/src/main/resources/initial/sliapi-provider.xml [new file with mode: 0644]
sliapi/provider/src/main/yang/sliapi-provider-impl.yang [new file with mode: 0755]
src/site/apt/nodes.apt [new file with mode: 0644]
src/site/site.xml [new file with mode: 0644]
version.properties [new file with mode: 0644]