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=718fc1767c5534e0606c7ffeb3bb23db6b8d9b0e;hp=a2f5b89c44e1c35fc3cf021e130220fe4e358303;hpb=647744d8ab625d28ea0ecda3e6741e23ba9b0bc7;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 a2f5b89c..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,47 +23,59 @@ 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; - public ProducerJobInfo(Object jobData, String id, String typeId, String targetUri) { + @Schema(name = "owner", description = "The owner of the job") + @SerializedName("owner") + @JsonProperty("owner") + public String owner; + + @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; + + public ProducerJobInfo(Object jobData, String id, String typeId, String targetUri, String owner, + String lastUpdated) { this.id = id; this.jobData = jobData; this.typeId = typeId; this.targetUri = targetUri; + this.owner = owner; + this.lastUpdated = lastUpdated; } public ProducerJobInfo(EiJob job) { - this(job.jobData(), job.id(), job.typeId(), job.targetUrl()); + this(job.getJobData(), job.getId(), job.getTypeId(), job.getTargetUrl(), job.getOwner(), job.getLastUpdated()); } public ProducerJobInfo() {