From: James Forsyth Date: Tue, 20 Feb 2018 20:19:42 +0000 (+0000) Subject: Merge "Add the @Override annotation" X-Git-Tag: v1.2.2~45 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=8add441cb45228430c4237df220abdcd85e321cb;p=aai%2Fchamp.git Merge "Add the @Override annotation" --- 8add441cb45228430c4237df220abdcd85e321cb diff --cc src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java index 004e098,1087cfa..7668621 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@@ -71,9 -71,9 +71,10 @@@ public abstract class AbstractLoggingCh public abstract Stream queryObjects(Map 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 retrieveRelationship(Object key) throws ChampUnmarshallingException; public abstract void executeDeleteRelationship(ChampRelationship relationship) throws ChampRelationshipNotExistsException; + @Override public abstract Stream retrieveRelationships(ChampObject object) throws ChampUnmarshallingException, ChampObjectNotExistsException; public abstract Stream queryRelationships(Map queryParams); public abstract ChampPartition executeStorePartition(ChampPartition partition) throws ChampSchemaViolationException, ChampRelationshipNotExistsException, ChampMarshallingException, ChampObjectNotExistsException;