[SDC-30] SDC-TOSCA initial commit 71/4871/1
authorPavel Aharoni <pa0916@att.com>
Thu, 8 Jun 2017 09:26:00 +0000 (12:26 +0300)
committerPavel Aharoni <pa0916@att.com>
Thu, 8 Jun 2017 09:26:00 +0000 (12:26 +0300)
commit6b61b88108c5d35efb61cd1006d0a3b9db9d35bf
tree85c77d3d6e944f58ba6a9b3a5e9ac3778658d5a2
parent9b5e11ba43f82c87623e05671a96a4ce0aedfde7
[SDC-30] SDC-TOSCA initial commit

Change-Id: I1048701a6f4a2e14cb37ecc6205b07ffce8af38f
Signed-off-by: Pavel Aharoni <pa0916@att.com>
51 files changed:
.gitignore [new file with mode: 0644]
.gitreview [new file with mode: 0644]
LICENSE.TXT [new file with mode: 0644]
README.md [new file with mode: 0644]
pom.xml [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/api/ConformanceLevel.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/api/ISdcCsarHelper.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/api/Version.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/config/Configuration.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/config/ConfigurationManager.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/config/ErrorConfiguration.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/config/ErrorInfo.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/config/SdcToscaParserErrors.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/exceptions/SdcToscaParserException.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcCsarHelperImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcPropertyNames.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/impl/SdcToscaParserFactory.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/impl/Types.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/utils/GeneralUtility.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/utils/SdcToscaUtility.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/tosca/parser/utils/YamlToObjectConverter.java [new file with mode: 0644]
src/main/resources/config/configuration.yaml [new file with mode: 0644]
src/main/resources/config/error-configuration.yaml [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/SdcToscaParserBasicTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserErrorHandlingTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserGroupTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserMetadataTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserNodeTemplateTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserServiceInputTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/ToscaParserSubsMappingsTest.java [new file with mode: 0644]
src/test/resources/config/configuration.yaml [new file with mode: 0644]
src/test/resources/config/error-configuration.yaml [new file with mode: 0644]
src/test/resources/csars/1service-ServiceWithPorts.csar [new file with mode: 0644]
src/test/resources/csars/csar-invalid-zip.zip [new file with mode: 0644]
src/test/resources/csars/service-Renanatst2-csar.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-csar-0904-2.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-csar-no-vf.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-csar-rainy.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-csar.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-test-csar.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-with-allotted.csar [new file with mode: 0644]
src/test/resources/csars/service-ServiceFdnt-with-get-input.csar [new file with mode: 0644]
src/test/resources/csars/service-entry-definition-not-defined.csar [new file with mode: 0644]
src/test/resources/csars/service-invalid-conformence-level.csar [new file with mode: 0644]
src/test/resources/csars/service-invalid-input-args.csar [new file with mode: 0644]
src/test/resources/csars/service-invalid-yaml-content-meta.csar [new file with mode: 0644]
src/test/resources/csars/service-missing-entry-definition.csar [new file with mode: 0644]
src/test/resources/csars/service-missing-meta-file.csar [new file with mode: 0644]
version.properties [new file with mode: 0644]