Merge "AsyncRestClient reuse of SSL context"
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / controllers / consumer / ConsumerEiTypeInfo.java
index 05d2326..3a2ab41 100644 (file)
@@ -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;
     }
 }