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=94ae4a6a458099cdd0450ba4345020960adbf374;hb=c4aef8252dec9bdd63ab16e3ff89b0d814aed462;hp=3f785803ce471d5312f69ad5e896e91257135744;hpb=b65d77a754c356931b82c8edf6b29759d294ea51;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 3f785803..94ae4a6a 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 @@ -57,10 +57,10 @@ public class ProducerRegistrationInfo { } } - @ApiModelProperty(value = "Supported EI types", required = true) + @ApiModelProperty(value = "Supported EI type IDs", required = true) @SerializedName("supported_ei_types") @JsonProperty(value = "supported_ei_types", required = true) - public Collection types; + public Collection supportedTypeIds; @ApiModelProperty(value = "callback for EI job", required = true) @SerializedName("ei_job_callback_url") @@ -72,9 +72,9 @@ public class ProducerRegistrationInfo { @JsonProperty(value = "ei_producer_supervision_callback_url", required = true) public String producerSupervisionCallbackUrl; - public ProducerRegistrationInfo(Collection types, String jobCallbackUrl, + public ProducerRegistrationInfo(Collection types, String jobCallbackUrl, String producerSupervisionCallbackUrl) { - this.types = types; + this.supportedTypeIds = types; this.jobCallbackUrl = jobCallbackUrl; this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl; }