Add modify vnf feature on driver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / vnfmdriver / bo / InstantiateVnfRequest.java
index 6f1325d..e26e809 100644 (file)
@@ -32,9 +32,12 @@ public class InstantiateVnfRequest {
        @JsonProperty("vnfPackageId")
        private String vnfPackageId;
        
+       //this id is irrelevant to the CBAM vnfdid
        @JsonProperty("vnfDescriptorId")
        private String vnfDescriptorId;
        
+       private String vnfdId;
+       
        @JsonProperty("flavourId")
        private String flavourId;
        
@@ -107,6 +110,14 @@ public class InstantiateVnfRequest {
                this.extVirtualLink = extVirtualLink;
        }
 
+       public String getVnfdId() {
+               return vnfdId;
+       }
+
+       public void setVnfdId(String vnfdId) {
+               this.vnfdId = vnfdId;
+       }
+
 }