X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Fcontrollers%2Fproducer%2FProducerRegistrationInfo.java;h=b270c853ea89b874df3a5bf233d165ef134ab405;hb=e5960c828297899da146313f695222ef190bacc1;hp=94ae4a6a458099cdd0450ba4345020960adbf374;hpb=10e254d9b7bc522bb2c25d590e6d203bf25a592d;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerRegistrationInfo.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerRegistrationInfo.java index 94ae4a6a..b270c853 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerRegistrationInfo.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerRegistrationInfo.java @@ -23,51 +23,30 @@ package org.oransc.enrichment.controllers.producer; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.gson.annotations.SerializedName; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; +import io.swagger.v3.oas.annotations.media.Schema; import java.util.Collection; import org.immutables.gson.Gson; @Gson.TypeAdapters -@ApiModel(value = "producer_registration_info", description = "Information for an EI producer") +@Schema(name = "producer_registration_info", description = "Information for an EI producer") public class ProducerRegistrationInfo { - @Gson.TypeAdapters - @ApiModel(value = "producer_ei_type_registration_info", description = "Information for an EI type") - public static class ProducerEiTypeRegistrationInfo { - - @ApiModelProperty(value = "EI type identity", required = true) - @SerializedName("ei_type_identity") - @JsonProperty(value = "ei_type_identity", required = true) - public String eiTypeId; - - @ApiModelProperty(value = "Json schema for the job data") - @SerializedName("ei_job_data_schema") - @JsonProperty("ei_job_data_schema") - public Object jobDataSchema; - - public ProducerEiTypeRegistrationInfo(Object jobDataSchema, String eiTypeId) { - this.jobDataSchema = jobDataSchema; - this.eiTypeId = eiTypeId; - } - - public ProducerEiTypeRegistrationInfo() { - } - } - - @ApiModelProperty(value = "Supported EI type IDs", required = true) + @Schema(name = "supported_ei_types", description = "Supported EI type IDs", required = true) @SerializedName("supported_ei_types") @JsonProperty(value = "supported_ei_types", required = true) public Collection supportedTypeIds; - @ApiModelProperty(value = "callback for EI job", required = true) + @Schema(name = "ei_job_callback_url", description = "callback for EI job", required = true) @SerializedName("ei_job_callback_url") @JsonProperty(value = "ei_job_callback_url", required = true) public String jobCallbackUrl; - @ApiModelProperty(value = "callback for producer supervision", required = true) + @Schema( + name = "ei_producer_supervision_callback_url", + description = "callback for producer supervision", + required = true) @SerializedName("ei_producer_supervision_callback_url") @JsonProperty(value = "ei_producer_supervision_callback_url", required = true) public String producerSupervisionCallbackUrl;