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=19bb541e765605a0bf4e1660a216629cc17342e1;hb=4c4a452097c16debab0177e9e87a33ae17d28e44;hp=1ef2ed4c76451afb485c257f0bf826d5de89ecc4;hpb=6a1eb6e2a6538decc54f5348fcb1589f5b829e68;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 1ef2ed4c..19bb541e 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 @@ -72,11 +72,17 @@ public class ProducerRegistrationInfo { @JsonProperty(value = "ei_job_deletion_callback_url", required = true) public String jobDeletionCallbackUrl; + @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; + public ProducerRegistrationInfo(Collection types, String jobCreationCallbackUrl, - String jobDeletionCallbackUrl) { + String jobDeletionCallbackUrl, String producerSupervisionCallbackUrl) { this.types = types; this.jobCreationCallbackUrl = jobCreationCallbackUrl; this.jobDeletionCallbackUrl = jobDeletionCallbackUrl; + this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl; } public ProducerRegistrationInfo() {