aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2018-02-13 16:26:10 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-13 16:26:10 +0000
commitc23251ab17fa5b221c63cc5c9f9e4ebb04e97e26 (patch)
treeeab129377909d13c4c0aa755b1e8ef8679c0c89c
parent65a3f36aa550f5b21874f688762dffa0d4753479 (diff)
parent0a9453fbe3012ffc7b00698921053020be9b8f58 (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 fe4a1ec..8ceadf1 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -71,6 +71,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph {
public abstract Stream<ChampObject> queryObjects(Map<String, Object> queryParams);
public abstract ChampRelationship executeStoreRelationship(ChampRelationship relationship) throws ChampUnmarshallingException, ChampMarshallingException, ChampObjectNotExistsException, ChampSchemaViolationException, ChampRelationshipNotExistsException;
public abstract ChampRelationship executeReplaceRelationship(ChampRelationship relationship) throws ChampUnmarshallingException, ChampMarshallingException, ChampSchemaViolationException, ChampRelationshipNotExistsException;
+ @Override
public abstract Optional<ChampRelationship> retrieveRelationship(Object key) throws ChampUnmarshallingException;
public abstract void executeDeleteRelationship(ChampRelationship relationship) throws ChampRelationshipNotExistsException;
public abstract Stream<ChampRelationship> retrieveRelationships(ChampObject object) throws ChampUnmarshallingException, ChampObjectNotExistsException;