Add the @Override annotation 61/31061/2
authorPrasadNaidu <RV00493633@techmahindra.com>
Fri, 9 Feb 2018 10:48:13 +0000 (16:18 +0530)
committerReddy Prasad Vemani <rv00493633@techmahindra.com>
Mon, 19 Feb 2018 05:53:14 +0000 (05:53 +0000)
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 <RV00493633@techmahindra.com>
src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java

index fe4a1ec..907f898 100644 (file)
@@ -82,6 +82,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph {
   public abstract Stream<ChampObjectIndex>         retrieveObjectIndices();
   public abstract void                             executeDeleteObjectIndex(String indexName) throws ChampIndexNotExistsException;
   public abstract void                             executeStoreRelationshipIndex(ChampRelationshipIndex index);
+  @Override
   public abstract Optional<ChampRelationshipIndex> retrieveRelationshipIndex(String indexName);
   public abstract Stream<ChampRelationshipIndex>   retrieveRelationshipIndices();
   public abstract void                             executeDeleteRelationshipIndex(String indexName) throws ChampIndexNotExistsException;