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%2FProducerJobInfo.java;h=d7dd71747a5151a9dce2e2ddbfd028f56bb0cfdc;hb=c5ea745a563f8bae0c0c3de3649a943e167f01cc;hp=bc3dba2ee5b076c96aeb88de867df9be61e804d2;hpb=366e36aa247ed4c5d1b95437bcd0798c9d945231;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerJobInfo.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerJobInfo.java index bc3dba2e..d7dd7174 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerJobInfo.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerJobInfo.java @@ -23,44 +23,43 @@ 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 org.immutables.gson.Gson; import org.oransc.enrichment.repository.EiJob; @Gson.TypeAdapters -@ApiModel( - value = "producer_ei_job_request", +@Schema( + name = "producer_ei_job_request", description = "The body of the EI producer callbacks for EI job creation and deletion") public class ProducerJobInfo { - @ApiModelProperty(value = "Idenitity of the EI job", required = true) + @Schema(name = "ei_job_identity", description = "Idenitity of the EI job", required = true) @SerializedName("ei_job_identity") @JsonProperty("ei_job_identity") public String id; - @ApiModelProperty(value = "Type idenitity for the job") + @Schema(name = "ei_type_identity", description = "Type idenitity for the job") @SerializedName("ei_type_identity") @JsonProperty("ei_type_identity") public String typeId; - @ApiModelProperty(value = "Json for the job data") + @Schema(name = "ei_job_data", description = "Json for the job data") @SerializedName("ei_job_data") @JsonProperty("ei_job_data") public Object jobData; - @ApiModelProperty(value = "URI for the target of the EI") + @Schema(name = "target_uri", description = "URI for the target of the EI") @SerializedName("target_uri") @JsonProperty("target_uri") public String targetUri; - @ApiModelProperty(value = "The owner of the job") + @Schema(name = "owner", description = "The owner of the job") @SerializedName("owner") @JsonProperty("owner") public String owner; - @ApiModelProperty(value = "The time when the job was last updated or created (ISO-8601)") + @Schema(name = "last_updated", description = "The time when the job was last updated or created (ISO-8601)") @SerializedName("last_updated") @JsonProperty("last_updated") public String lastUpdated;