Fix resourceIndex to model 09/87209/1
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>
Tue, 7 May 2019 17:20:30 +0000 (22:50 +0530)
committersubhash kumar singh <subhash.kumar.singh@huawei.com>
Tue, 7 May 2019 17:20:30 +0000 (22:50 +0530)
Fix resourceIndex to model in json mapping.

Change-Id: Ia609d3eb381b14fc5654774e83f8417a4d876e91
Issue-ID: SO-1393
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/e2eserviceinstancebeans/ResourceRequest.java

index 44592ce..ae462eb 100644 (file)
@@ -39,6 +39,9 @@ public class ResourceRequest {
     @JsonProperty("resourceCustomizationUuid")
     private String resourceCustomizationUuid;
 
+    @JsonProperty("resourceIndex")
+    private String resourceIndex;
+
     @JsonProperty("parameters")
     private E2EParameters parameters;
 
@@ -98,4 +101,12 @@ public class ResourceRequest {
     public void setParameters(E2EParameters parameters) {
         this.parameters = parameters;
     }
+
+    public String getResourceIndex() {
+        return resourceIndex;
+    }
+
+    public void setResourceIndex(String resourceIndex) {
+        this.resourceIndex = resourceIndex;
+    }
 }