summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2018-02-20 20:19:59 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-20 20:19:59 +0000
commit674ccb4622a4d646f5f5a28da75cfd41b46508cd (patch)
tree28a666f783ec47faa7dcb7f189b2a3992b54ab56
parent8add441cb45228430c4237df220abdcd85e321cb (diff)
parent4837da9b4bc3484c7d1bfd7edffa0107334f294b (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 7668621..d601f1b 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -76,6 +76,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph {
public abstract void executeDeleteRelationship(ChampRelationship relationship) throws ChampRelationshipNotExistsException;
@Override
public abstract Stream<ChampRelationship> retrieveRelationships(ChampObject object) throws ChampUnmarshallingException, ChampObjectNotExistsException;
+ @Override
public abstract Stream<ChampRelationship> queryRelationships(Map<String, Object> queryParams);
public abstract ChampPartition executeStorePartition(ChampPartition partition) throws ChampSchemaViolationException, ChampRelationshipNotExistsException, ChampMarshallingException, ChampObjectNotExistsException;
public abstract void executeDeletePartition(ChampPartition graph);