diff options
author | James Forsyth <jf2512@att.com> | 2018-02-20 20:21:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-20 20:21:02 +0000 |
commit | 921689da4e8c1cea6b154664d017a4c51086648c (patch) | |
tree | f35bc142e743553e9e26093896b1114fed561492 /src | |
parent | 674ccb4622a4d646f5f5a28da75cfd41b46508cd (diff) | |
parent | a256d63f88d811b907302d24756e80d65752cad9 (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 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; |