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=3f785803ce471d5312f69ad5e896e91257135744;hb=08d483a877c24c3668f77dc8404ee54cd1e041ab;hp=1ef2ed4c76451afb485c257f0bf826d5de89ecc4;hpb=57b7c521ca02753b12e995ec02f3a84dddd147ce;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..3f785803 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 @@ -1,9 +1,9 @@ /*- * ========================LICENSE_START================================= - * ONAP : ccsdk oran - * ====================================================================== - * Copyright (C) 2020 Nordix Foundation. All rights reserved. - * ====================================================================== + * O-RAN-SC + * %% + * Copyright (C) 2020 Nordix Foundation + * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -62,21 +62,21 @@ public class ProducerRegistrationInfo { @JsonProperty(value = "supported_ei_types", required = true) public Collection types; - @ApiModelProperty(value = "callback for job creation", required = true) - @SerializedName("ei_job_creation_callback_url") - @JsonProperty(value = "ei_job_creation_callback_url", required = true) - public String jobCreationCallbackUrl; + @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 job deletion", required = true) - @SerializedName("ei_job_deletion_callback_url") - @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) { + public ProducerRegistrationInfo(Collection types, String jobCallbackUrl, + String producerSupervisionCallbackUrl) { this.types = types; - this.jobCreationCallbackUrl = jobCreationCallbackUrl; - this.jobDeletionCallbackUrl = jobDeletionCallbackUrl; + this.jobCallbackUrl = jobCallbackUrl; + this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl; } public ProducerRegistrationInfo() {