From: PrasadNaidu Date: Fri, 9 Feb 2018 10:48:13 +0000 (+0530) Subject: Add the @Override annotation X-Git-Tag: v1.2.2~41^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F61%2F31061%2F2;p=aai%2Fchamp.git Add the @Override annotation Add the @Override annotation above this method signature AbstractLoggingChampGraph.java:L85 Sonar Link : https://sonar.onap.org/project/issues?assignees=PrasadNaidu&id=org.onap.aai%3Achamp&open=AV7ygfKAlaLbmlVXUW5d Location : src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java Change-Id: Ifd6f0fbffb797db4d9823fd5c3769e7a098f32cf Issue-ID: AAI-754 Signed-off-by: PrasadNaidu --- diff --git a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java index fe4a1ec..907f898 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -82,6 +82,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { public abstract Stream retrieveObjectIndices(); public abstract void executeDeleteObjectIndex(String indexName) throws ChampIndexNotExistsException; public abstract void executeStoreRelationshipIndex(ChampRelationshipIndex index); + @Override public abstract Optional retrieveRelationshipIndex(String indexName); public abstract Stream retrieveRelationshipIndices(); public abstract void executeDeleteRelationshipIndex(String indexName) throws ChampIndexNotExistsException;