From fc4c9f5bab59773ebd1c6451f5baa92fb12946a1 Mon Sep 17 00:00:00 2001 From: PrasadNaidu Date: Fri, 9 Feb 2018 16:18:13 +0530 Subject: 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 --- src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/org') 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; -- cgit 1.2.3-korg