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%2Fconsumer%2FConsumerEiTypeInfo.java;h=b5d664bfd406b5687af61fb7014786a3492f78e4;hb=dddded37b9b321d041a1dc66a3a86112e37b918e;hp=3a2ab41c06aa554e7e6ff8dbf13005b17456755e;hpb=b5cb68ea0e77d0a1421b4f17cc58b981628c29f7;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiTypeInfo.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiTypeInfo.java index 3a2ab41c..b5d664bf 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiTypeInfo.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiTypeInfo.java @@ -20,24 +20,12 @@ package org.oransc.enrichment.controllers.consumer; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.google.gson.annotations.SerializedName; - import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; import org.immutables.gson.Gson; @Gson.TypeAdapters -@ApiModel(value = "EiType", description = "Information for an EI type") +@ApiModel(value = "EiTypeObject", description = "Information for an EI type") public class ConsumerEiTypeInfo { - @ApiModelProperty(value = "Json schema for the job data") - @SerializedName("eiJobParametersSchema") - @JsonProperty("eiJobParametersSchema") - public final Object jobParametersSchema; - - ConsumerEiTypeInfo(Object jobParametersSchema) { - this.jobParametersSchema = jobParametersSchema; - } }