diff options
author | James Forsyth <jf2512@att.com> | 2018-02-20 20:21:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-20 20:21:59 +0000 |
commit | 8ebe38fc8717dc66501f98d2650b1044fe1c2de4 (patch) | |
tree | d55815bff63fa70cddbd9c7ffd46f50645478b6f /src | |
parent | 7aab3e098fa33c3576c14c331138205b4555224e (diff) | |
parent | fc4c9f5bab59773ebd1c6451f5baa92fb12946a1 (diff) |
Merge "Add the @Override annotation"
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 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; |