From: Chenfei Gao Date: Mon, 15 Apr 2019 18:38:39 +0000 (-0400) Subject: Add serialized name for typeVersion X-Git-Tag: 3.0.2-ONAP~8^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=a2d8f1d73ea10e3bc870c7ed45824eda6011534f;p=policy%2Fmodels.git Add serialized name for typeVersion 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 --- diff --git a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java index 284e39c9b..27d4eb2e7 100644 --- a/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java +++ b/models-tosca/src/main/java/org/onap/policy/models/tosca/authorative/concepts/ToscaPolicy.java @@ -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 { private String type; + @ApiModelProperty(name = "type_version") + @SerializedName("type_version") private String typeVersion; private Map properties;