summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2018-02-20 20:21:59 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-20 20:21:59 +0000
commit8ebe38fc8717dc66501f98d2650b1044fe1c2de4 (patch)
treed55815bff63fa70cddbd9c7ffd46f50645478b6f
parent7aab3e098fa33c3576c14c331138205b4555224e (diff)
parentfc4c9f5bab59773ebd1c6451f5baa92fb12946a1 (diff)
Merge "Add the @Override annotation"
-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 7eeb743..e9a806d 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -87,6 +87,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;