summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraishkashyap <as00476394@techmahindra.com>2018-01-16 15:22:15 +0530
committerJames Forsyth <jf2512@att.com>2018-02-23 16:12:28 +0000
commitcad9987aa6b4ee290da222a58c43b10efbd234b4 (patch)
tree8eedd774d10b67ab481df5c7850281fa5544a6c2
parent6d0ee9b9136fff938c359426e2c2939efd7b814c (diff)
Sonar Major:Add the @Override annotation.
Sonar Link: https://sonar.onap.org/component_issues/index?id=org.onap.aai.data-router%3Adata-router#resolved=false|assignees=aishkashyap Location: src/main/java/org/onap/aai/datarouter/entity/AggregationEntity.java Line No:111 Issue-ID: AAI-665 Change-Id: Ifde1e8fb6b68302d6ffdc6bbb851460f7b572f4d Signed-off-by: aishkashyap <as00476394@techmahindra.com>
-rw-r--r--src/main/java/org/onap/aai/datarouter/entity/AggregationEntity.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/aai/datarouter/entity/AggregationEntity.java b/src/main/java/org/onap/aai/datarouter/entity/AggregationEntity.java
index 8a9f5e4..b8f5e2b 100644
--- a/src/main/java/org/onap/aai/datarouter/entity/AggregationEntity.java
+++ b/src/main/java/org/onap/aai/datarouter/entity/AggregationEntity.java
@@ -107,7 +107,7 @@ public class AggregationEntity implements DocumentStoreDataEntity, Serializable
public void addAttributeKeyValuePair(String key, String value){
this.attributes.put(key, value);
}
-
+ @Override
public String getAsJson() {
ObjectNode rootNode = mapper.createObjectNode();
rootNode.put("link", this.getLink());