aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-09 15:39:16 +0530
committerReddy Prasad Vemani <rv00493633@techmahindra.com>2018-02-19 05:51:34 +0000
commita256d63f88d811b907302d24756e80d65752cad9 (patch)
tree5bb7821d467062d5bf8c6cc2474b6f2e0dd0351a
parent90b737757ff790d199458c51f7e09c4806b4ba34 (diff)
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 <RV00493633@techmahindra.com>
-rw-r--r--src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java1
1 files changed, 1 insertions, 0 deletions
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<ChampObjectIndex> retrieveObjectIndex(String indexName);
public abstract Stream<ChampObjectIndex> retrieveObjectIndices();
public abstract void executeDeleteObjectIndex(String indexName) throws ChampIndexNotExistsException;