Improve Test coverage of pmproducer
[nonrtric/plt/ranpm.git] / pmproducer / src / main / java / org / oran / pmproducer / r1 / ProducerRegistrationInfo.java
index 502abb6..e3fbdcb 100644 (file)
@@ -33,16 +33,19 @@ import lombok.Builder;
 @Schema(name = "producer_registration_info", description = "Information for an Information Producer")
 public class ProducerRegistrationInfo {
 
+    @SuppressWarnings("java:S1874")
     @Schema(name = "supported_info_types", description = "Supported Information Type IDs", required = true)
     @SerializedName("supported_info_types")
     @JsonProperty(value = "supported_info_types", required = true)
     public Collection<String> supportedTypeIds;
 
+    @SuppressWarnings("java:S1874")
     @Schema(name = "info_job_callback_url", description = "callback for Information Job", required = true)
     @SerializedName("info_job_callback_url")
     @JsonProperty(value = "info_job_callback_url", required = true)
     public String jobCallbackUrl;
 
+    @SuppressWarnings("java:S1874")
     @Schema(name = "info_producer_supervision_callback_url", description = "callback for producer supervision",
             required = true)
     @SerializedName("info_producer_supervision_callback_url")