Initial OpenECOMP sdc-distribution-client commit 87/387/1
authorMichael Lando <ml636r@att.com>
Wed, 15 Feb 2017 14:02:49 +0000 (16:02 +0200)
committerMichael Lando <ml636r@att.com>
Wed, 15 Feb 2017 14:03:20 +0000 (16:03 +0200)
commit4e33d89a0863f5f4ec95f537f5f60241e28132c3
treeb0f7bef94ecb2e99dfa608e52c007f8c6acc1471
parent78744d32005cd31e7c4954bfcdf546802fbbc0f5
Initial OpenECOMP sdc-distribution-client  commit

Change-Id: I6dd20cdaf36d22836db1e9b6956c90652b6a38d7
Signed-off-by: Michael Lando <ml636r@att.com>
58 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/api/IDistributionClient.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/IDistributionStatusMessageJsonBuilder.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/asdc/RegistrationRequest.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/asdc/ServerListResponse.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/consumer/IConfiguration.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/consumer/IDistributionStatusMessage.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/consumer/INotificationCallback.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/notification/IArtifactInfo.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/notification/INotificationData.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/notification/IResourceInstance.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/notification/IVfModuleMetadata.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/results/IDistributionClientDownloadResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/api/results/IDistributionClientResult.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/http/AsdcConnectorClient.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/http/AsdcUrls.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/http/HttpAsdcClient.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/http/HttpAsdcResponse.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/http/IHttpAsdcClient.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/http/TopicRegistrationResponse.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/ArtifactInfoImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/Configuration.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/DistributionClientDownloadResultImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/DistributionClientFactory.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/DistributionClientImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/DistributionClientResultImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/DistributionStatusMessageImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/DistributionStatusMessageJsonBuilderFactory.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/JsonContainerResourceInstance.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/NotificationConsumer.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/NotificationDataImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/VfModuleMetadata.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/mock/DistributionClientDownloadResultStubImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/mock/DistributionClientResultStubImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/impl/mock/DistributionClientStubImpl.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/ArtifactTypeEnum.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/DistributionActionResultEnum.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/DistributionClientConstants.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/DistributionStatusEnum.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/GeneralUtils.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/Pair.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/Wrapper.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/YamlToObjectConverter.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/heat/HeatConfiguration.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/heat/HeatParameter.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/heat/HeatParameterConstraint.java [new file with mode: 0644]
src/main/java/org/openecomp/sdc/utils/heat/HeatParser.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/DistributionClientTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/HeatParserTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/impl/NotificationConsumerTest.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/utils/ArtifactsUtils.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/utils/TestConfiguration.java [new file with mode: 0644]
src/test/java/org/openecomp/sdc/utils/TestNotificationCallback.java [new file with mode: 0644]
src/test/resources/heatExample.yaml [new file with mode: 0644]