Merge "Add the @Override annotation"
authorJames Forsyth <jf2512@att.com>
Tue, 20 Feb 2018 20:19:59 +0000 (20:19 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 20 Feb 2018 20:19:59 +0000 (20:19 +0000)
1  2 
src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java

@@@ -71,11 -71,10 +71,12 @@@ public abstract class AbstractLoggingCh
    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;
 +  @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);