X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fportal%2Fnonrtric%2Fcontrolpanel%2Fmodel%2FProducerRegistrationInfo.java;h=670beb3eb1f3f8589637bb64e40bcefa893c7591;hb=5840fd8fc16980ade4af6735f991e08f8fca65e7;hp=0f4499d11505b507ae8e734d22bd8a3dceaabd0a;hpb=fb4b33160dab6fc7a42ad35e5d9e257441cf78cc;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/ProducerRegistrationInfo.java b/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/ProducerRegistrationInfo.java index 0f4499d..670beb3 100644 --- a/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/ProducerRegistrationInfo.java +++ b/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/ProducerRegistrationInfo.java @@ -20,7 +20,6 @@ package org.oransc.portal.nonrtric.controlpanel.model; -import com.fasterxml.jackson.annotation.JsonProperty; import com.google.gson.annotations.SerializedName; import io.swagger.annotations.ApiModel; @@ -44,32 +43,26 @@ public class ProducerRegistrationInfo { @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; } @ApiModelProperty(value = "Supported EI types", required = true) @SerializedName("supported_ei_types") - @JsonProperty(value = "supported_ei_types", required = true) public Collection types; @ApiModelProperty(value = "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) @SerializedName("ei_producer_supervision_callback_url") - @JsonProperty(value = "ei_producer_supervision_callback_url", required = true) public String producerSupervisionCallbackUrl; @ApiModelProperty(value = "status", required = true) @SerializedName("status") - @JsonProperty(value = "status", required = true) public ProducerStatusInfo status; }