From: PrasadNaidu Date: Fri, 9 Feb 2018 09:50:35 +0000 (+0530) Subject: Add the @Override annotation X-Git-Tag: v1.2.2~44^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=4837da9b4bc3484c7d1bfd7edffa0107334f294b;p=aai%2Fchamp.git Add the @Override annotation Add the @Override annotation above this method signature AbstractLoggingChampGraph.java:L77 Sonar Link : https://sonar.onap.org/project/issues?assignees=PrasadNaidu&id=org.onap.aai%3Achamp&open=AV7ygfKAlaLbmlVXUW5d Location : src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java Change-Id: I6a3c705ed9152c8ab10749bfda1cceb8b20c3d19 Issue-ID: AAI-751 Signed-off-by: PrasadNaidu --- 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..a82049d 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -74,6 +74,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { public abstract Optional retrieveRelationship(Object key) throws ChampUnmarshallingException; public abstract void executeDeleteRelationship(ChampRelationship relationship) throws ChampRelationshipNotExistsException; 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);