Enhancing SO SDC Controller to invoke ONAP-ETSI Catalog APIs 24/102324/1
authorwaqas.ikram <waqas.ikram@est.tech>
Tue, 11 Feb 2020 17:40:20 +0000 (17:40 +0000)
committerwaqas.ikram <waqas.ikram@est.tech>
Tue, 25 Feb 2020 14:37:24 +0000 (14:37 +0000)
commitfd63587429fbbd96c2cb5d03463b349666181765
tree49b9408627b0bff782f00bb3680a8664fa7945d9
parent7acc80b895555184f4fc011d32dd509e10e4e1ac
Enhancing SO SDC Controller to invoke ONAP-ETSI Catalog APIs

Change-Id: I9f0ba05c14478b9165c2c470559567513e1919cf
Issue-ID: SO-2406
Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
32 files changed:
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/ErrorCode.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/EtsiCatalogPackageOnboadingJobStatus.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/EtsiCatalogPackageOnboardingJob.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/EtsiCatalogPackageOnboardingJobDescriptor.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/EtsiCatalogPackageOnboardingRequest.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/EtsiCatalogServiceProvider.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/EtsiResourcePackageProcessor.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/HttpRestServiceProviderConfiguration.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/JobStatus.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/SdcBasicHttpConfigurationProvider.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/SdcResourceProvider.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/SslBasedHttpClientConfiguration.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/exceptions/EtsiCatalogManagerRequestFailureException.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/exceptions/SOL004ResourcePackageFailureException.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/etsi/pkg/processor/exceptions/SOL004ResourcePackageProcessingException.java [new file with mode: 0644]
asdc-controller/src/main/java/org/onap/so/asdc/installer/heat/ToscaResourceInstaller.java
asdc-controller/src/test/java/org/onap/so/asdc/TestApplication.java
asdc-controller/src/test/java/org/onap/so/asdc/client/SdcNotificationWithSol004PackageTest.java [new file with mode: 0644]
asdc-controller/src/test/resources/application-test.yaml
asdc-controller/src/test/resources/resource-examples/vgw/ONBOARDED_PACKAGE/VENDOR_LICENSE/vendor-license-model.xml [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/ONBOARDED_PACKAGE/VF_LICENSE/vf-license-model.xml [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/ONBOARDED_PACKAGE/vgw6.csar [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/SDC_RESOURCE_CSAR/vgw_sdc_resource.csar [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/VENDOR_LICENSE/vendor-license-model.xml [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/VF_LICENSE/vf-license-model.xml [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/dmaap-notification-message.json [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/etsi-catalog-package-onboading-job-status-error-package-exists.json [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/etsi-catalog-package-onboading-job-status-error.json [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/etsi-catalog-package-onboading-job-status-successful.json [new file with mode: 0644]
asdc-controller/src/test/resources/resource-examples/vgw/service-Vgwservicev1-csar.csar [new file with mode: 0644]
common/src/main/java/org/onap/so/rest/service/HttpRestServiceProvider.java
common/src/main/java/org/onap/so/rest/service/HttpRestServiceProviderImpl.java