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 / cbam / bo / entity / VnfProperty.java
index 55444de..5e77de5 100644 (file)
 
 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity;
 
+import com.fasterxml.jackson.annotation.JsonProperty;
+
 public class VnfProperty {
+       @JsonProperty("name")
+       private String name;
+       
+       @JsonProperty("value")
+       private Object value;
+
+       public String getName() {
+               return name;
+       }
+
+       public void setName(String name) {
+               this.name = name;
+       }
+
+       public Object getValue() {
+               return value;
+       }
 
+       public void setValue(Object value) {
+               this.value = value;
+       }
 }