From: PrasadNaidu Date: Fri, 9 Feb 2018 10:09:16 +0000 (+0530) Subject: Add the @Override annotation X-Git-Tag: v1.2.2~43^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F31053%2F2;p=aai%2Fchamp.git 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 --- 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;