From 80311ac0dedb0868d3837029c6e4b5fcb984efb2 Mon Sep 17 00:00:00 2001 From: lapentafd Date: Mon, 13 Feb 2023 17:00:32 +0000 Subject: Remove annotations in models Removing last annotations in order to remove dependencies in parent Issue-ID: POLICY-3465 Change-Id: Id7a070120d452e33af805b08b37dd1eba1374615 Signed-off-by: lapentafd --- .../java/org/onap/policy/models/pap/concepts/PapPolicyIdentifier.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'models-pap/src/main/java') diff --git a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PapPolicyIdentifier.java b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PapPolicyIdentifier.java index 7bd78a222..ef4624700 100644 --- a/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PapPolicyIdentifier.java +++ b/models-pap/src/main/java/org/onap/policy/models/pap/concepts/PapPolicyIdentifier.java @@ -21,7 +21,6 @@ package org.onap.policy.models.pap.concepts; import com.google.gson.annotations.SerializedName; -import io.swagger.annotations.ApiModelProperty; import lombok.NonNull; import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier; import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifierOptVersion; @@ -34,11 +33,9 @@ import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifierO */ public class PapPolicyIdentifier { @NonNull - @ApiModelProperty(name = "policy-id") @SerializedName("policy-id") private String name; - @ApiModelProperty(name = "policy-version") @SerializedName("policy-version") private String version; -- cgit 1.2.3-korg