summaryrefslogtreecommitdiffstats
path: root/ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java
diff options
context:
space:
mode:
Diffstat (limited to 'ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java')
-rw-r--r--ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java28
1 files changed, 16 insertions, 12 deletions
diff --git a/ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java b/ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java
index 7b403bb..6bf5b7c 100644
--- a/ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java
+++ b/ANR-App/src/main/java/org/onap/ranapp/kafka/model/appmodels/Data.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2022 CAPGEMINI ENGINEERING.
+ *
+ * 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:
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
package org.onap.ranapp.kafka.model.appmodels;
import java.util.HashMap;
import java.util.Map;
@@ -14,19 +29,8 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
})
@Generated("jsonschema2pojo")
public class Data {
-@JsonProperty("ric_id")
-private String ricId;
-
@JsonProperty("FAPService")
private FAPService fAPService;
-@JsonProperty("ric_id")
-public String getRicId() {
- return ricId;
-}
-@JsonProperty("ric_id")
-public void setRicId(String ricId) {
- this.ricId = ricId;
-}
@JsonProperty("FAPService")
public FAPService getFAPService() {
return fAPService;
@@ -37,6 +41,6 @@ this.fAPService = fAPService;
}
@Override
public String toString() {
- return "Data [ricId=" + ricId + ", fAPService=" + fAPService + "]";
+ return "Data [fAPService=" + fAPService + "]";
}
} \ No newline at end of file