aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/changeManagement
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/openecomp/vid/changeManagement')
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementRequest.java63
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementResponse.java19
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CloudConfiguration.java55
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CmResponse.java17
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/LeanCloudConfiguration.java20
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfo.java138
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfoOfRelatedInstance.java122
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/MsoRequestDetails.java31
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstance.java29
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java23
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetails.java56
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetailsWrapper.java9
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestInfo.java69
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestParameters.java44
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/changeManagement/UpdateRequestInfo.java26
15 files changed, 0 insertions, 721 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementRequest.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementRequest.java
deleted file mode 100644
index adcb5468..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementRequest.java
+++ /dev/null
@@ -1,63 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import java.util.List;
-import java.util.HashMap;
-import java.util.Map;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonPropertyOrder({
- "requestDetails",
- "requestType"
-})
-
-public class ChangeManagementRequest {
-
- public ChangeManagementRequest() {}
-
- @JsonProperty("requestDetails")
- private List<RequestDetails> requestDetails;
-
- @JsonProperty("requestType")
- private String requestType;
-
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- @JsonProperty("requestDetails")
- public List<RequestDetails> getRequestDetails() {
- return requestDetails;
- }
-
- @JsonProperty("requestDetails")
- public void setRequestDetails(List<RequestDetails> requestDetails) {
- this.requestDetails = requestDetails;
- }
-
- @JsonProperty("requestType")
- public String getRequestType() {
- return requestType;
- }
-
- @JsonProperty("requestType")
- public void setRequestType(String requestType) {
- this.requestType = requestType;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementResponse.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementResponse.java
deleted file mode 100644
index 10ba035d..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ChangeManagementResponse.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class ChangeManagementResponse {
- public List<CmResponse> cmResponses = null;
-
-
-
- public ChangeManagementResponse(String vnfName) {
- List<CmResponse> cmResponses = new ArrayList<>();
- cmResponses.add(new CmResponse(vnfName));
- this.cmResponses = cmResponses;
-
- }
-
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CloudConfiguration.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CloudConfiguration.java
deleted file mode 100644
index a5debc6d..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CloudConfiguration.java
+++ /dev/null
@@ -1,55 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import java.util.HashMap;
-import java.util.Map;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"lcpCloudRegionId",
-"tenantId"
-})
-public class CloudConfiguration {
- @JsonProperty("lcpCloudRegionId")
- private String lcpCloudRegionId;
- @JsonProperty("tenantId")
- private String tenantId;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- @JsonProperty("lcpCloudRegionId")
- public String getLcpCloudRegionId() {
- return lcpCloudRegionId;
- }
-
- @JsonProperty("lcpCloudRegionId")
- public void setLcpCloudRegionId(String lcpCloudRegionId) {
- this.lcpCloudRegionId = lcpCloudRegionId;
- }
-
- @JsonProperty("tenantId")
- public String getTenantId() {
- return tenantId;
- }
-
- @JsonProperty("tenantId")
- public void setTenantId(String tenantId) {
- this.tenantId = tenantId;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CmResponse.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CmResponse.java
deleted file mode 100644
index 70e09d83..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/CmResponse.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-public class CmResponse {
-
- public String orchestratorRequestId;
- public String serviceInstanceId;
- public String vnfInstanceId;
- public String vnfName;
-
- public CmResponse(String vnfName){
- this.orchestratorRequestId = "Request Id";
- this.serviceInstanceId = "Service instance Id";
- this.vnfInstanceId = "Vnf instance Id";
- this.vnfName = vnfName;
- }
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/LeanCloudConfiguration.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/LeanCloudConfiguration.java
deleted file mode 100644
index 663ff8c4..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/LeanCloudConfiguration.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-/**
- * Created by Oren on 9/5/17.
- */
-public class LeanCloudConfiguration {
-
- public LeanCloudConfiguration() {
- }
-
- public LeanCloudConfiguration(org.openecomp.vid.domain.mso.CloudConfiguration cloudConfiguration) {
- this.tenantId = cloudConfiguration.getTenantId();
- this.lcpCloudRegionId = cloudConfiguration.getLcpCloudRegionId();
-
- }
- public String lcpCloudRegionId;
-
- public String tenantId;
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfo.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfo.java
deleted file mode 100644
index 517628ca..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfo.java
+++ /dev/null
@@ -1,138 +0,0 @@
-package org.openecomp.vid.changeManagement;
-import java.util.HashMap;
-import java.util.Map;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"modelType",
-"modelInvariantId",
-"modelVersionId",
-"modelName",
-"modelVersion",
-"modelCustomizationName",
-"modelCustomizationId"
-})
-public class ModelInfo {
-
- public ModelInfo(){
-
- }
-
- public ModelInfo(org.openecomp.vid.domain.mso.ModelInfo modelInfo){
- this.setModelType(modelInfo.getModelType().toString());
- this.setModelInvariantId(modelInfo.getModelInvariantId());
- this.setModelVersionId(modelInfo.getModelNameVersionId());
- this.setModelName(modelInfo.getModelName());
- this.setModelVersion(modelInfo.getModelVersion());
- this.setModelCustomizationId(modelInfo.getModelCustomizationId());
- this.setModelVersionId(modelInfo.getModelVersionId());
- }
-
-
- @JsonProperty("modelType")
- private String modelType;
- @JsonProperty("modelInvariantId")
- private String modelInvariantId;
- @JsonProperty("modelVersionId")
- private String modelVersionId;
- @JsonProperty("modelName")
- private String modelName;
- @JsonProperty("modelVersion")
- private String modelVersion;
- @JsonProperty("modelCustomizationName")
- private String modelCustomizationName;
- @JsonProperty("modelCustomizationId")
- private String modelCustomizationId;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- @JsonProperty("modelType")
- public String getModelType() {
- return modelType;
- }
-
- @JsonProperty("modelType")
- public void setModelType(String modelType) {
- this.modelType = modelType;
- }
-
- @JsonProperty("modelInvariantId")
- public String getModelInvariantId() {
- return modelInvariantId;
- }
-
- @JsonProperty("modelInvariantId")
- public void setModelInvariantId(String modelInvariantId) {
- this.modelInvariantId = modelInvariantId;
- }
-
- @JsonProperty("modelVersionId")
- public String getModelVersionId() {
- return modelVersionId;
- }
-
- @JsonProperty("modelVersionId")
- public void setModelVersionId(String modelVersionId) {
- this.modelVersionId = modelVersionId;
- }
-
- @JsonProperty("modelName")
- public String getModelName() {
- return modelName;
- }
-
- @JsonProperty("modelName")
- public void setModelName(String modelName) {
- this.modelName = modelName;
- }
-
- @JsonProperty("modelVersion")
- public String getModelVersion() {
- return modelVersion;
- }
-
- @JsonProperty("modelVersion")
- public void setModelVersion(String modelVersion) {
- this.modelVersion = modelVersion;
- }
-
- @JsonProperty("modelCustomizationName")
- public String getModelCustomizationName() {
- return modelCustomizationName;
- }
-
- @JsonProperty("modelCustomizationName")
- public void setModelCustomizationName(String modelCustomizationName) {
- this.modelCustomizationName = modelCustomizationName;
- }
-
- @JsonProperty("modelCustomizationId")
- public String getModelCustomizationId() {
- return modelCustomizationId;
- }
-
- @JsonProperty("modelCustomizationId")
- public void setModelCustomizationId(String modelCustomizationId) {
- this.modelCustomizationId = modelCustomizationId;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-
-
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfoOfRelatedInstance.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfoOfRelatedInstance.java
deleted file mode 100644
index c60ed2f7..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/ModelInfoOfRelatedInstance.java
+++ /dev/null
@@ -1,122 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import java.util.HashMap;
-import java.util.Map;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"modelType",
-"modelInvariantId",
-"modelVersionId",
-"modelName",
-"modelVersion",
-"modelCustomizationName",
-"modelCustomizationId"
-})
-
-public class ModelInfoOfRelatedInstance {
-
- @JsonProperty("modelType")
- private String modelType;
- @JsonProperty("modelInvariantId")
- private String modelInvariantId;
- @JsonProperty("modelVersionId")
- private String modelVersionId;
- @JsonProperty("modelName")
- private String modelName;
- @JsonProperty("modelVersion")
- private String modelVersion;
- @JsonProperty("modelCustomizationName")
- private String modelCustomizationName;
- @JsonProperty("modelCustomizationId")
- private String modelCustomizationId;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- @JsonProperty("modelType")
- public String getModelType() {
- return modelType;
- }
-
- @JsonProperty("modelType")
- public void setModelType(String modelType) {
- this.modelType = modelType;
- }
-
- @JsonProperty("modelInvariantId")
- public String getModelInvariantId() {
- return modelInvariantId;
- }
-
- @JsonProperty("modelInvariantId")
- public void setModelInvariantId(String modelInvariantId) {
- this.modelInvariantId = modelInvariantId;
- }
-
- @JsonProperty("modelVersionId")
- public String getModelVersionId() {
- return modelVersionId;
- }
-
- @JsonProperty("modelVersionId")
- public void setModelVersionId(String modelVersionId) {
- this.modelVersionId = modelVersionId;
- }
-
- @JsonProperty("modelName")
- public String getModelName() {
- return modelName;
- }
-
- @JsonProperty("modelName")
- public void setModelName(String modelName) {
- this.modelName = modelName;
- }
-
- @JsonProperty("modelVersion")
- public String getModelVersion() {
- return modelVersion;
- }
-
- @JsonProperty("modelVersion")
- public void setModelVersion(String modelVersion) {
- this.modelVersion = modelVersion;
- }
-
- @JsonProperty("modelCustomizationName")
- public String getModelCustomizationName() {
- return modelCustomizationName;
- }
-
- @JsonProperty("modelCustomizationName")
- public void setModelCustomizationName(String modelCustomizationName) {
- this.modelCustomizationName = modelCustomizationName;
- }
-
- @JsonProperty("modelCustomizationId")
- public String getModelCustomizationId() {
- return modelCustomizationId;
- }
-
- @JsonProperty("modelCustomizationId")
- public void setModelCustomizationId(String modelCustomizationId) {
- this.modelCustomizationId = modelCustomizationId;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/MsoRequestDetails.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/MsoRequestDetails.java
deleted file mode 100644
index 9e442f28..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/MsoRequestDetails.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * Created by Oren on 9/5/17.
- */
-public class MsoRequestDetails {
-
- public ModelInfo modelInfo;
-
- public LeanCloudConfiguration cloudConfiguration;
-
- public UpdateRequestInfo requestInfo;
-
- public List<RelatedInstanceList> relatedInstanceList;
-
- public RequestParameters requestParameters;
-
- public MsoRequestDetails(RequestDetails r) {
- this.modelInfo = new ModelInfo(r.getModelInfo());
- this.cloudConfiguration = new LeanCloudConfiguration(r.getCloudConfiguration());
- this.requestInfo = new UpdateRequestInfo(r.getRequestInfo());
- this.relatedInstanceList = new ArrayList<>();
- relatedInstanceList = r.getRelatedInstList();
-
-
- }
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstance.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstance.java
deleted file mode 100644
index 49368c20..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstance.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import com.fasterxml.jackson.annotation.*;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "instanceId",
- "modelInfo"
-})
-public class RelatedInstance {
-
- @JsonProperty("instanceId")
- public String instanceId;
-
-
- @JsonProperty("modelInfo")
- public ModelInfo modelInfo;
-
- @JsonGetter
- public String getInstanceId() {
- return instanceId;
- }
-
- @JsonSetter
- public void setInstanceId(String instanceId) {
- this.instanceId = instanceId;
- }
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java
deleted file mode 100644
index 21a41c3f..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RelatedInstanceList.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import com.fasterxml.jackson.annotation.*;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
- "relatedInstance"
-})
-public class RelatedInstanceList {
-
- @JsonProperty("relatedInstance")
- public RelatedInstance relatedInstance;
-
- @JsonSetter
- public RelatedInstance getRelatedInstance() {
- return relatedInstance;
- }
-
- @JsonSetter
- public void setRelatedInstance(RelatedInstance relatedInstance) {
- this.relatedInstance = relatedInstance;
- }
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetails.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetails.java
deleted file mode 100644
index 94e4c446..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetails.java
+++ /dev/null
@@ -1,56 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import com.fasterxml.jackson.annotation.*;
-
-import java.util.List;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"modelInfo",
-"cloudConfiguration",
-"requestInfo",
-"requestParameters",
-"vnfName",
-"vnfInstanceId"
-})
-public class RequestDetails extends org.openecomp.vid.mso.rest.RequestDetails{
-
- @JsonProperty("vnfName")
- private String vnfName;
- @JsonProperty("vnfInstanceId")
- private String vnfInstanceId;
-
- /** The related model list. */
- @JsonProperty("relatedInstanceList")
- public List<RelatedInstanceList> relatedInstList;
-
- @JsonProperty("vnfName")
- public String getVnfName() {
- return vnfName;
- }
-
- @JsonProperty("vnfName")
- public void setVnfName(String vnfName) {
- this.vnfName = vnfName;
- }
- @JsonProperty("vnfInstanceId")
- public String getVnfInstanceId() {
- return vnfInstanceId;
- }
-
- @JsonProperty("vnfInstanceId")
- public void setVnfInstanceId(String vnfInstanceId) {
- this.vnfInstanceId = vnfInstanceId;
- }
-
- @JsonGetter
- public List<RelatedInstanceList> getRelatedInstList() {
- return relatedInstList;
- }
-
- @JsonSetter
- public void setRelatedInstList(List<RelatedInstanceList> relatedInstList) {
- this.relatedInstList = relatedInstList;
- }
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetailsWrapper.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetailsWrapper.java
deleted file mode 100644
index 2f49aff0..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestDetailsWrapper.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-/**
- * Created by Oren on 9/5/17.
- */
-public class RequestDetailsWrapper {
-
- public MsoRequestDetails requestDetails;
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestInfo.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestInfo.java
deleted file mode 100644
index a7236c4b..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestInfo.java
+++ /dev/null
@@ -1,69 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import java.util.HashMap;
-import java.util.Map;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"source",
-"suppressRollback",
-"requestorId"
-})
-public class RequestInfo {
- @JsonProperty("source")
- private String source;
- @JsonProperty("suppressRollback")
- private Boolean suppressRollback;
- @JsonProperty("requestorId")
- private String requestorId;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- @JsonProperty("source")
- public String getSource() {
- return source;
- }
-
- @JsonProperty("source")
- public void setSource(String source) {
- this.source = source;
- }
-
- @JsonProperty("suppressRollback")
- public Boolean getSuppressRollback() {
- return suppressRollback;
- }
-
- @JsonProperty("suppressRollback")
- public void setSuppressRollback(Boolean suppressRollback) {
- this.suppressRollback = suppressRollback;
- }
-
- @JsonProperty("requestorId")
- public String getRequestorId() {
- return requestorId;
- }
-
- @JsonProperty("requestorId")
- public void setRequestorId(String requestorId) {
- this.requestorId = requestorId;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestParameters.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestParameters.java
deleted file mode 100644
index 37cad473..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/RequestParameters.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import java.util.HashMap;
-import java.util.Map;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"usePreload"
-})
-
-public class RequestParameters {
-
-
- @JsonProperty("usePreload")
- private Boolean usePreload;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- @JsonProperty("usePreload")
- public Boolean getUsePreload() {
- return usePreload;
- }
-
- @JsonProperty("usePreload")
- public void setUsePreload(Boolean usePreload) {
- this.usePreload = usePreload;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-}
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/UpdateRequestInfo.java b/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/UpdateRequestInfo.java
deleted file mode 100644
index ab818948..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/changeManagement/UpdateRequestInfo.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package org.openecomp.vid.changeManagement;
-
-import org.openecomp.vid.domain.mso.*;
-
-/**
- * Created by Oren on 9/5/17.
- */
-public class UpdateRequestInfo {
-
- public UpdateRequestInfo() {
- }
-
-
- public UpdateRequestInfo(org.openecomp.vid.domain.mso.RequestInfo requestInfo) {
- this.requestorId = requestInfo.getRequestorId();
- this.suppressRollback = requestInfo.getSuppressRollback();
- this.source = requestInfo.getSource();
- }
- public String source;
-
- public Boolean suppressRollback;
-
- public String requestorId;
-
-
-}