diff options
author | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-09 16:18:13 +0530 |
---|---|---|
committer | Reddy Prasad Vemani <rv00493633@techmahindra.com> | 2018-02-19 05:53:14 +0000 |
commit | fc4c9f5bab59773ebd1c6451f5baa92fb12946a1 (patch) | |
tree | 887a15b1dfd338fbbd63417bc711e9f6c0852fed /src | |
parent | 90b737757ff790d199458c51f7e09c4806b4ba34 (diff) |
Add the @Override annotation
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>
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..907f898 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -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; |