aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-09 15:20:35 +0530
committerReddy Prasad Vemani <rv00493633@techmahindra.com>2018-02-19 05:45:43 +0000
commit4837da9b4bc3484c7d1bfd7edffa0107334f294b (patch)
treedcbc0dc6af79fbbfcfabec9be209107aa7704f3c
parent90b737757ff790d199458c51f7e09c4806b4ba34 (diff)
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 <RV00493633@techmahindra.com>
-rw-r--r--src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java1
1 files changed, 1 insertions, 0 deletions
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<ChampRelationship> retrieveRelationship(Object key) throws ChampUnmarshallingException;
public abstract void executeDeleteRelationship(ChampRelationship relationship) throws ChampRelationshipNotExistsException;
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);