summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2018-02-20 20:21:02 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-20 20:21:02 +0000
commit921689da4e8c1cea6b154664d017a4c51086648c (patch)
treef35bc142e743553e9e26093896b1114fed561492
parent674ccb4622a4d646f5f5a28da75cfd41b46508cd (diff)
parenta256d63f88d811b907302d24756e80d65752cad9 (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 d601f1b..22ac7b8 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -81,6 +81,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;