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%2Fr1consumer%2FConsumerJobStatus.java;h=d40ecda568011818e1ec953aaf8fcd3c292a205a;hb=8fd8e9fc86a24be49d61841e381423120a41296d;hp=034fc33df0fcd8f4f7fe568e04eba219309e7b82;hpb=367608a9f6c71c2aaae45ed8b1099b9c8e51c0f7;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1consumer/ConsumerJobStatus.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1consumer/ConsumerJobStatus.java index 034fc33d..d40ecda5 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1consumer/ConsumerJobStatus.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1consumer/ConsumerJobStatus.java @@ -28,22 +28,22 @@ import io.swagger.v3.oas.annotations.media.Schema; import org.immutables.gson.Gson; @Gson.TypeAdapters -@Schema(name = "JobStatus", description = "Status for an EI job") +@Schema(name = "consumer_job_status", description = "Status for an Information Job") public class ConsumerJobStatus { @Gson.TypeAdapters - @Schema(name = "JobStatusValues", description = "Allowed values for EI job status") + @Schema(name = "info_job_status_values", description = "Allowed values for Information Job status") public enum InfoJobStatusValues { ENABLED, DISABLED } private static final String OPERATIONAL_STATE_DESCRIPTION = "values:\n" // - + "ENABLED: the A1-EI producer is able to deliver EI result for the EI job\n" // - + "DISABLED: the A1-EI producer is unable to deliver EI result for the EI job"; + + "ENABLED: the A1-Information producer is able to deliver result for the Information Job\n" // + + "DISABLED: the A1-Information producer is unable to deliver result for the Information Job"; - @Schema(name = "eiJobStatus", description = OPERATIONAL_STATE_DESCRIPTION, required = true) - @SerializedName("eiJobStatus") - @JsonProperty(value = "eiJobStatus", required = true) + @Schema(name = "info_job_status", description = OPERATIONAL_STATE_DESCRIPTION, required = true) + @SerializedName("info_job_status") + @JsonProperty(value = "info_job_status", required = true) public InfoJobStatusValues state; public ConsumerJobStatus() {