aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-09 12:53:36 +0530
committerPrasadNaidu <RV00493633@techmahindra.com>2018-02-09 12:54:05 +0530
commit0a9453fbe3012ffc7b00698921053020be9b8f58 (patch)
treea1bbfccb20c4b1f5b10b2e27b0998fcbf1ee2f19
parent90b737757ff790d199458c51f7e09c4806b4ba34 (diff)
Add the @Override annotation
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>
-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..8ceadf1 100644
--- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
+++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java
@@ -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;