diff options
author | PrasadNaidu <RV00493633@techmahindra.com> | 2018-02-09 15:07:23 +0530 |
---|---|---|
committer | Reddy Prasad Vemani <rv00493633@techmahindra.com> | 2018-02-19 05:49:57 +0000 |
commit | 2c80d4fa52d03a8ee814586c738c8bf2a438c0a7 (patch) | |
tree | a960f2e46bfa059bd3c86ba25cb57f16b0e25e21 /src | |
parent | 90b737757ff790d199458c51f7e09c4806b4ba34 (diff) |
Add the @Override annotation
Add the @Override annotation above this method signature
AbstractLoggingChampGraph.java:L76
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: I94f4d83af7a8458436b907fdf5ab983c4da3e0ba
Issue-ID: AAI-750
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 1 |
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..1087cfa 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -73,6 +73,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { public abstract ChampRelationship executeReplaceRelationship(ChampRelationship relationship) throws ChampUnmarshallingException, ChampMarshallingException, ChampSchemaViolationException, ChampRelationshipNotExistsException; 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; public abstract Stream<ChampRelationship> queryRelationships(Map<String, Object> queryParams); public abstract ChampPartition executeStorePartition(ChampPartition partition) throws ChampSchemaViolationException, ChampRelationshipNotExistsException, ChampMarshallingException, ChampObjectNotExistsException; |