From a256d63f88d811b907302d24756e80d65752cad9 Mon Sep 17 00:00:00 2001 From: PrasadNaidu Date: Fri, 9 Feb 2018 15:39:16 +0530 Subject: Add the @Override annotation Add the @Override annotation above this method signature AbstractLoggingChampGraph.java:L81 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: I4e6808285c6353cc4a2af0687f5bafea3c3ff79a Issue-ID: AAI-752 Signed-off-by: PrasadNaidu --- src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 1 + 1 file changed, 1 insertion(+) 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..c41312e 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -78,6 +78,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { public abstract ChampPartition executeStorePartition(ChampPartition partition) throws ChampSchemaViolationException, ChampRelationshipNotExistsException, ChampMarshallingException, ChampObjectNotExistsException; public abstract void executeDeletePartition(ChampPartition graph); public abstract void executeStoreObjectIndex(ChampObjectIndex index); + @Override public abstract Optional retrieveObjectIndex(String indexName); public abstract Stream retrieveObjectIndices(); public abstract void executeDeleteObjectIndex(String indexName) throws ChampIndexNotExistsException; -- cgit 1.2.3-korg