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=3a2ab41c06aa554e7e6ff8dbf13005b17456755e;hb=77e580513eeb2d27f8040588dc1363b94f4afa0d;hp=05d232625fa7a538ac3faad1c98446f9af375df1;hpb=d1d085456c485599f6b8aba87b6d761b29c2ecd4;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 05d23262..3a2ab41c 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 @@ -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 @@ -29,15 +29,15 @@ import io.swagger.annotations.ApiModelProperty; import org.immutables.gson.Gson; @Gson.TypeAdapters -@ApiModel(value = "ei_type_info", description = "Information for an EI type") +@ApiModel(value = "EiType", description = "Information for an EI type") public class ConsumerEiTypeInfo { @ApiModelProperty(value = "Json schema for the job data") - @SerializedName("job_data_schema") - @JsonProperty("job_data_schema") - public final Object jobDataSchema; + @SerializedName("eiJobParametersSchema") + @JsonProperty("eiJobParametersSchema") + public final Object jobParametersSchema; - ConsumerEiTypeInfo(Object jobDataSchema) { - this.jobDataSchema = jobDataSchema; + ConsumerEiTypeInfo(Object jobParametersSchema) { + this.jobParametersSchema = jobParametersSchema; } }