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=859443d6ad182413673a40e64f434a72c1c4f480;hb=b7311fbcbd77f615266a039613516adb9cea24f1;hp=c48c716f4c6c1ec0251eefbf56bd293a7722c064;hpb=ebf3211ddd6e634ca9c0a2fec56abd1f12c7625d;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 c48c716f..859443d6 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 @@ -31,7 +31,7 @@ import java.util.Collection; import org.immutables.gson.Gson; @Gson.TypeAdapters -@ApiModel(value = "producer_registration_info", description = "Information for an EI Producer") +@ApiModel(value = "producer_registration_info", description = "Information for an EI producer") public class ProducerRegistrationInfo { @Gson.TypeAdapters @@ -44,8 +44,8 @@ public class ProducerRegistrationInfo { public String eiTypeId; @ApiModelProperty(value = "Json schema for the job data") - @SerializedName("job_data_schema") - @JsonProperty("job_data_schema") + @SerializedName("ei_job_data_schema") + @JsonProperty("ei_job_data_schema") public Object jobDataSchema; public ProducerEiTypeRegistrationInfo(Object jobDataSchema, String eiTypeId) { @@ -63,20 +63,26 @@ public class ProducerRegistrationInfo { public Collection types; @ApiModelProperty(value = "callback for job creation", required = true) - @SerializedName("job_creation_callback_url") - @JsonProperty(value = "job_creation_callback_url", required = true) + @SerializedName("ei_job_creation_callback_url") + @JsonProperty(value = "ei_job_creation_callback_url", required = true) public String jobCreationCallbackUrl; @ApiModelProperty(value = "callback for job deletion", required = true) - @SerializedName("job_deletion_callback_url") - @JsonProperty(value = "job_deletion_callback_url", 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) { + String jobDeletionCallbackUrl, String producerSupervisionCallbackUrl) { this.types = types; this.jobCreationCallbackUrl = jobCreationCallbackUrl; this.jobDeletionCallbackUrl = jobDeletionCallbackUrl; + this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl; } public ProducerRegistrationInfo() {