From: James Forsyth Date: Tue, 20 Feb 2018 20:19:59 +0000 (+0000) Subject: Merge "Add the @Override annotation" X-Git-Tag: v1.2.2~44 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=674ccb4622a4d646f5f5a28da75cfd41b46508cd;p=aai%2Fchamp.git Merge "Add the @Override annotation" --- 674ccb4622a4d646f5f5a28da75cfd41b46508cd diff --cc src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java index 7668621,a82049d..d601f1b --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@@ -71,11 -71,10 +71,12 @@@ 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; + @Override public abstract Stream queryRelationships(Map queryParams); public abstract ChampPartition executeStorePartition(ChampPartition partition) throws ChampSchemaViolationException, ChampRelationshipNotExistsException, ChampMarshallingException, ChampObjectNotExistsException; public abstract void executeDeletePartition(ChampPartition graph);