diff options
author | James Forsyth <jf2512@att.com> | 2018-02-13 16:26:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-13 16:26:10 +0000 |
commit | c23251ab17fa5b221c63cc5c9f9e4ebb04e97e26 (patch) | |
tree | eab129377909d13c4c0aa755b1e8ef8679c0c89c /src | |
parent | 65a3f36aa550f5b21874f688762dffa0d4753479 (diff) | |
parent | 0a9453fbe3012ffc7b00698921053020be9b8f58 (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 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; |