Add serialized name for typeVersion 57/85357/1
authorChenfei Gao <cgao@research.att.com>
Mon, 15 Apr 2019 18:38:39 +0000 (14:38 -0400)
committerChenfei Gao <cgao@research.att.com>
Mon, 15 Apr 2019 18:38:56 +0000 (14:38 -0400)
Add serialied name and swagger ui rendering name for
attribute typeVersion in ToscaPolicy.

Issue-ID: POLICY-1515
Change-Id: I42e85117c5f47901bf8c16d3cc6f162a8b6db5e1
Signed-off-by: Chenfei Gao <cgao@research.att.com>
models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java

index 284e39c..27d4eb2 100644 (file)
@@ -23,6 +23,8 @@
 
 package org.onap.policy.models.tosca.authorative.concepts;
 
+import com.google.gson.annotations.SerializedName;
+import io.swagger.annotations.ApiModelProperty;
 import java.util.LinkedHashMap;
 import java.util.Map;
 import java.util.Map.Entry;
@@ -44,6 +46,8 @@ import lombok.ToString;
 public class ToscaPolicy extends ToscaEntity implements Comparable<ToscaPolicy> {
     private String type;
 
+    @ApiModelProperty(name = "type_version")
+    @SerializedName("type_version")
     private String typeVersion;
 
     private Map<String, Object> properties;