diff options
author | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2018-03-22 09:43:22 -0400 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2018-03-22 10:12:53 -0400 |
commit | 8d9ffbca22c2e0ed2ad7ce8f1a8cc6a61f252f96 (patch) | |
tree | 5a6060b669a63892160bdcef03ea7554a452448c /common/src/main/java | |
parent | cc248780f5e303bf536ea75414af8fbef7805947 (diff) |
added openpojo test for policy entities beans
Change-Id: I41031381e5cb5d2f9540e6c941479283f6a59280
Issue-ID: SO-512
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'common/src/main/java')
-rw-r--r-- | common/src/main/java/org/openecomp/mso/client/policy/entities/DecisionAttributes.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/src/main/java/org/openecomp/mso/client/policy/entities/DecisionAttributes.java b/common/src/main/java/org/openecomp/mso/client/policy/entities/DecisionAttributes.java index 9f40639e68..655f71f823 100644 --- a/common/src/main/java/org/openecomp/mso/client/policy/entities/DecisionAttributes.java +++ b/common/src/main/java/org/openecomp/mso/client/policy/entities/DecisionAttributes.java @@ -34,9 +34,9 @@ public class DecisionAttributes { @JsonProperty("ServiceType") private String serviceType; @JsonProperty("VNFType") - private String vNFType; + private String VNFType; @JsonProperty("BB_ID") - private String bbID; + private String BBID; @JsonProperty("WorkStep") private String workStep; @JsonProperty("ErrorCode") @@ -54,22 +54,22 @@ public class DecisionAttributes { @JsonProperty("VNFType") public String getVNFType() { - return vNFType; + return VNFType; } @JsonProperty("VNFType") public void setVNFType(String vNFType) { - this.vNFType = vNFType; + this.VNFType = vNFType; } @JsonProperty("BB_ID") public String getBBID() { - return bbID; + return BBID; } @JsonProperty("BB_ID") public void setBBID(String bBID) { - this.bbID = bBID; + this.BBID = bBID; } @JsonProperty("WorkStep") |