From c72d565bb58226b20625b2bce5f0019046bee649 Mon Sep 17 00:00:00 2001 From: "Sonsino, Ofir (os0695)" Date: Tue, 10 Jul 2018 14:20:54 +0300 Subject: Merge 1806 code of vid-common Change-Id: I75d52abed4a24dfe3827d79edc4a2938726aa87a Issue-ID: VID-208 Signed-off-by: Sonsino, Ofir (os0695) --- .../serviceInstantiation/ServiceInstantiation.java | 174 +++++++++++++++++++++ .../vid/model/serviceInstantiation/VfModule.java | 75 +++++++++ .../onap/vid/model/serviceInstantiation/Vnf.java | 120 ++++++++++++++ 3 files changed, 369 insertions(+) create mode 100644 vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/ServiceInstantiation.java create mode 100644 vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/VfModule.java create mode 100644 vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/Vnf.java (limited to 'vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation') diff --git a/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/ServiceInstantiation.java b/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/ServiceInstantiation.java new file mode 100644 index 000000000..1d2e69d54 --- /dev/null +++ b/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/ServiceInstantiation.java @@ -0,0 +1,174 @@ +package org.onap.vid.model.serviceInstantiation; + +import com.fasterxml.jackson.annotation.JsonProperty; +import org.onap.vid.domain.mso.ModelInfo; +import org.onap.vid.job.JobAdapter; + +import java.util.Collections; +import java.util.List; +import java.util.Map; + +public class ServiceInstantiation implements JobAdapter.AsyncJobRequest { + + private final ModelInfo modelInfo; + + private final String owningEntityId; + + private final String owningEntityName; + + private final String projectName; + + private final String subscriberName; + + private final String globalSubscriberId; + + private final String productFamilyId; + + private final String instanceName; + + private final Boolean isUserProvidedNaming; + + private final String subscriptionServiceType; + + private final String lcpCloudRegionId; + + private final String tenantId; + + private final String tenantName; + + private final String aicZoneId; + + private final String aicZoneName; + + private final Map vnfs; + + private final List> instanceParams; + + private final boolean isPause; + + private final int bulkSize; + + private final boolean rollbackOnFailure; + + public ServiceInstantiation(@JsonProperty("modelInfo") ModelInfo modelInfo, + @JsonProperty("owningEntityId") String owningEntityId, + @JsonProperty("owningEntityName") String owningEntityName, + @JsonProperty("projectName") String projectName, + @JsonProperty("globalSubscriberId") String globalSubscriberId, + @JsonProperty("subscriberName") String subscriberName, + @JsonProperty("productFamilyId") String productFamilyId, + @JsonProperty("instanceName") String instanceName, + @JsonProperty("isUserProvidedNaming") Boolean isUserProvidedNaming, + @JsonProperty("subscriptionServiceType") String subscriptionServiceType, + @JsonProperty("lcpCloudRegionId") String lcpCloudRegionId, + @JsonProperty("tenantId") String tenantId, + @JsonProperty("tenantName") String tenantName, + @JsonProperty("aicZoneId") String aicZoneId, + @JsonProperty("aicZoneName") String aicZoneName, + @JsonProperty("vnfs") Map vnfs, + @JsonProperty("instanceParams") List> instanceParams, + @JsonProperty("pause") boolean isPause, + @JsonProperty("bulkSize") int bulkSize, + @JsonProperty("rollbackOnFailure") boolean rollbackOnFailure + ) { + + this.modelInfo = modelInfo; + this.modelInfo.setModelType("service"); + this.owningEntityId = owningEntityId; + this.owningEntityName = owningEntityName; + this.projectName = projectName; + this.globalSubscriberId = globalSubscriberId; + this.subscriberName = subscriberName; + this.productFamilyId = productFamilyId; + this.instanceName = instanceName; + this.isUserProvidedNaming = isUserProvidedNaming; + this.subscriptionServiceType = subscriptionServiceType; + this.lcpCloudRegionId = lcpCloudRegionId; + this.tenantId = tenantId; + this.tenantName = tenantName; + this.aicZoneId = aicZoneId; + this.aicZoneName = aicZoneName; + this.vnfs = vnfs; + this.instanceParams = instanceParams; + this.isPause = isPause; + this.bulkSize = bulkSize; + this.rollbackOnFailure = rollbackOnFailure; + } + + public ModelInfo getModelInfo() { + return modelInfo; + } + + public String getOwningEntityId() { + return owningEntityId; + } + + public String getOwningEntityName() { + return owningEntityName; + } + + public String getProjectName() { + return projectName; + } + + public String getGlobalSubscriberId() { + return globalSubscriberId; + } + + public String getSubscriberName() { + return subscriberName; + } + + public String getProductFamilyId() { + return productFamilyId; + } + + public String getInstanceName() { + return instanceName; + } + + @JsonProperty("isUserProvidedNaming") + public Boolean isUserProvidedNaming() { return isUserProvidedNaming; } + + public String getSubscriptionServiceType() { + return subscriptionServiceType; + } + + public String getLcpCloudRegionId() { + return lcpCloudRegionId; + } + + public String getTenantId() { + return tenantId; + } + + public String getTenantName() { + return tenantName; + } + + public String getAicZoneId() { + return aicZoneId; + } + + public String getAicZoneName() { + return aicZoneName; + } + + public Map getVnfs() { + return vnfs; + } + + public List> getInstanceParams() { + return instanceParams == null ? Collections.emptyList() : instanceParams; + } + + public boolean isPause() { + return isPause; + } + + public int getBulkSize() { return bulkSize; } + + public boolean isRollbackOnFailure() { + return rollbackOnFailure; + } +} \ No newline at end of file diff --git a/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/VfModule.java b/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/VfModule.java new file mode 100644 index 000000000..f63fb3365 --- /dev/null +++ b/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/VfModule.java @@ -0,0 +1,75 @@ +/*- + * ============LICENSE_START======================================================= + * VID + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + +package org.onap.vid.model.serviceInstantiation; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import org.apache.commons.lang3.StringUtils; +import org.onap.vid.domain.mso.ModelInfo; + +import java.util.Collections; +import java.util.List; +import java.util.Map; + +import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL; + +/** + * The Class VfModule. + */ +public class VfModule { + + + + private final ModelInfo modelInfo; + + @JsonInclude(NON_NULL) private final String instanceName; + + private final List> instanceParams; + @JsonInclude(NON_NULL) private final String volumeGroupInstanceName; + + public VfModule(@JsonProperty("modelInfo") ModelInfo modelInfo, + @JsonProperty("instanceName") String instanceName, + @JsonProperty(value = "volumeGroupName") String volumeGroupInstanceName, + @JsonProperty("instanceParams") List> instanceParams) { + this.modelInfo = modelInfo; + this.modelInfo.setModelType("vfModule"); + this.instanceName = instanceName; + this.instanceParams = instanceParams; + this.volumeGroupInstanceName = volumeGroupInstanceName; + } + + public ModelInfo getModelInfo() { + return modelInfo; + } + + public String getInstanceName() { + return instanceName; + } + + public String getVolumeGroupInstanceName() { + return volumeGroupInstanceName; + } + + public List> getInstanceParams() { + return instanceParams == null ? Collections.emptyList() : instanceParams; + } + +} \ No newline at end of file diff --git a/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/Vnf.java b/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/Vnf.java new file mode 100644 index 000000000..621754d17 --- /dev/null +++ b/vid-app-common/src/main/java/org/onap/vid/model/serviceInstantiation/Vnf.java @@ -0,0 +1,120 @@ +/*- + * ============LICENSE_START======================================================= + * VID + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + +package org.onap.vid.model.serviceInstantiation; + + +import com.fasterxml.jackson.annotation.JsonProperty; +import org.apache.commons.lang3.StringUtils; +import org.onap.vid.domain.mso.ModelInfo; + +import java.util.Collections; +import java.util.List; +import java.util.Map; + +/** + * The Class VNF. + */ +public class Vnf { + private final ModelInfo modelInfo; + + private final String productFamilyId; + + private final String instanceName; + + private final String platformName; + + private final String lcpCloudRegionId; + + private final String tenantId; + + private final Boolean isUserProvidedNaming; + + private final List> instanceParams; + + private final String lineOfBusiness; + + + private final Map> vfModules; + + public Vnf(@JsonProperty("modelInfo") ModelInfo modelInfo, + @JsonProperty("productFamilyId") String productFamilyId, + @JsonProperty("instanceName") String instanceName, + @JsonProperty("isUserProvidedNaming") Boolean isUserProvidedNaming, + @JsonProperty("platformName") String platformName, + @JsonProperty("lcpCloudRegionId") String lcpCloudRegionId, + @JsonProperty("tenantId") String tenantId, + @JsonProperty("instanceParams") List> instanceParams, + @JsonProperty("lineOfBusinessName") String lineOfBusiness, + @JsonProperty("vfModules") Map> vfModules) { + this.modelInfo = modelInfo; + this.modelInfo.setModelType("vnf"); + this.productFamilyId = productFamilyId; + this.instanceName = instanceName; + this.isUserProvidedNaming = isUserProvidedNaming; + this.platformName = platformName; + this.lcpCloudRegionId = lcpCloudRegionId; + this.tenantId = tenantId; + this.instanceParams = instanceParams; + this.vfModules = vfModules; + this.lineOfBusiness = lineOfBusiness; + } + + public ModelInfo getModelInfo() { + return modelInfo; + } + + public String getProductFamilyId() { + return productFamilyId; + } + + public String getInstanceName() { + return instanceName; + } + + @JsonProperty("isUserProvidedNaming") + public Boolean isUserProvidedNaming() { + return isUserProvidedNaming; + } + + public String getPlatformName() { + return platformName; + } + + public String getLcpCloudRegionId() { + return lcpCloudRegionId; + } + + public String getTenantId() { + return tenantId; + } + + public List> getInstanceParams() { + return instanceParams == null ? Collections.emptyList() : instanceParams; + } + + public Map> getVfModules() { + return vfModules; + } + + public String getLineOfBusiness() { + return lineOfBusiness; + } +} -- cgit 1.2.3-korg