Add the @Override annotation 53/30653/1
authorPrasadNaidu <RV00493633@techmahindra.com>
Wed, 7 Feb 2018 11:10:49 +0000 (16:40 +0530)
committerPrasadNaidu <RV00493633@techmahindra.com>
Wed, 7 Feb 2018 11:11:19 +0000 (16:41 +0530)
Add the @Override annotation above this method signature
GraphTraversalBuilder.java:L349

Sonar Link : https://sonar.onap.org/component_issues/index?id=org.onap.aai.aai-common%3Aaai-common#resolved=false|severities=MAJOR|rules=squid%3AS1161|assignees=_me_%2CPrasadNaidu
Location : src/main/java/org/onap/aai/query/builder/GraphTraversalBuilder.javaChange-Id: I8852e515b3d2038268c0558979006be8b4d9ac69

Change-Id: I949f5e6ec1692e4397064bfafdad3d453eaed9eb
Issue-ID: AAI-740
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
aai-core/src/main/java/org/onap/aai/query/builder/GraphTraversalBuilder.java

index 8156dd0..c1518e2 100644 (file)
@@ -346,6 +346,7 @@ public abstract class GraphTraversalBuilder<E> extends QueryBuilder<E> {
                return unionTraversals.toArray(new Traversal[unionTraversals.size()]);
        }
 
+       @Override
        public QueryBuilder<Edge> getEdgesBetweenWithLabels(EdgeType type, String outNodeType, String inNodeType, List<String> labels) throws AAIException {
                Introspector outObj = loader.introspectorFromName(outNodeType);
                Introspector inObj = loader.introspectorFromName(inNodeType);