diff options
author | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-09 16:04:58 +0530 |
---|---|---|
committer | Reddy Prasad Vemani <rv00493633@techmahindra.com> | 2018-02-19 05:52:25 +0000 |
commit | 1eb9c4792e23131ecf341624690e9f46683441db (patch) | |
tree | 33a189485cb3351873b7b2ac4427572291c1c865 /src | |
parent | 90b737757ff790d199458c51f7e09c4806b4ba34 (diff) |
Add the @Override annotation
Add the @Override annotation above this method signature
AbstractLoggingChampGraph.java:L82
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.javaChange-Id: I75f7308ac13cb238176066a1311530259a1d2f94
Change-Id: Ib474d08bb509a82f247f03cd6b1f7837ac26eb45
Issue-ID: AAI-753
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 1 |
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..063e6e6 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -79,6 +79,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { public abstract void executeDeletePartition(ChampPartition graph); public abstract void executeStoreObjectIndex(ChampObjectIndex index); public abstract Optional<ChampObjectIndex> retrieveObjectIndex(String indexName); + @Override public abstract Stream<ChampObjectIndex> retrieveObjectIndices(); public abstract void executeDeleteObjectIndex(String indexName) throws ChampIndexNotExistsException; public abstract void executeStoreRelationshipIndex(ChampRelationshipIndex index); |