diff options
author | James Forsyth <jf2512@att.com> | 2018-02-20 20:19:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-20 20:19:42 +0000 |
commit | 8add441cb45228430c4237df220abdcd85e321cb (patch) | |
tree | e48f6e89d9c14aa33cc57b9b57d1b2defa72b05b | |
parent | 7213f8de6357e972ea27d8ed8d490dc63b117879 (diff) | |
parent | 2c80d4fa52d03a8ee814586c738c8bf2a438c0a7 (diff) |
Merge "Add the @Override annotation"
-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 004e098..7668621 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -74,6 +74,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { @Override public abstract Optional<ChampRelationship> retrieveRelationship(Object key) throws ChampUnmarshallingException; public abstract void executeDeleteRelationship(ChampRelationship relationship) throws ChampRelationshipNotExistsException; + @Override public abstract Stream<ChampRelationship> retrieveRelationships(ChampObject object) throws ChampUnmarshallingException, ChampObjectNotExistsException; public abstract Stream<ChampRelationship> queryRelationships(Map<String, Object> queryParams); public abstract ChampPartition executeStorePartition(ChampPartition partition) throws ChampSchemaViolationException, ChampRelationshipNotExistsException, ChampMarshallingException, ChampObjectNotExistsException; |