aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/pomba/common/datatypes/VNFC.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/pomba/common/datatypes/VNFC.java')
-rw-r--r--src/main/java/org/onap/pomba/common/datatypes/VNFC.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/org/onap/pomba/common/datatypes/VNFC.java b/src/main/java/org/onap/pomba/common/datatypes/VNFC.java
index 66c852a..dd697d8 100644
--- a/src/main/java/org/onap/pomba/common/datatypes/VNFC.java
+++ b/src/main/java/org/onap/pomba/common/datatypes/VNFC.java
@@ -35,11 +35,11 @@ public class VNFC {
@SerializedName("uuid")
private String uuid;
@Expose
- @SerializedName("nfNamingCode")
- private String nfcNamingCode;
+ @SerializedName("type")
+ private String type;
@Expose
@SerializedName("dataQuality")
- private DataQuality dataQuality = new DataQuality();
+ private DataQuality dataQuality = DataQuality.ok();
@Expose
@SerializedName("attributeList")
private List<Attribute> attributeList = new ArrayList<>();
@@ -62,11 +62,11 @@ public class VNFC {
public void setUuid(String uuid) {
this.uuid = uuid;
}
- public String getNfcNamingCode() {
- return nfcNamingCode;
+ public String getType() {
+ return type;
}
- public void setNfcNamingCode(String nfcType) {
- this.nfcNamingCode = nfcType;
+ public void setType(String type) {
+ this.type = type;
}
public List<Attribute> getAttributes() {
return attributeList;