Add the @Override annotation 97/30997/1
authorPrasadNaidu <RV00493633@techmahindra.com>
Fri, 9 Feb 2018 07:23:36 +0000 (12:53 +0530)
committerPrasadNaidu <RV00493633@techmahindra.com>
Fri, 9 Feb 2018 07:24:05 +0000 (12:54 +0530)
Add the @Override annotation above this method signature
AbstractLoggingChampGraph.java:L74

Sonar Link : https://sonar.onap.org/component_issues/index?id=org.onap.aai%3Achamp#resolved=false|assignees=PrasadNaidu
Location : src/main/java/org/onap/aai/champ/ChampGraph.javaChange-Id: Ifef3f30780de982c898bd2095a14379ef6844a48

Change-Id: I961be806db8afc69e15805563c44a5b95e2b46b5
Issue-ID: AAI-749
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java

index fe4a1ec..8ceadf1 100644 (file)
@@ -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;