diff options
author | Maharajh, Robby (rx2202) <rx2202@us.att.com> | 2017-08-16 10:54:45 -0400 |
---|---|---|
committer | Maharajh, Robby (rx2202) <rx2202@us.att.com> | 2017-08-16 10:55:22 -0400 |
commit | 828c5be71fcb4407a1ec4a915cc6ff4e5494fd68 (patch) | |
tree | c5fec64724877dc93ab2667f0a4291decdaa1607 /aai-resources/src | |
parent | 161147bd76f0c1b07227a6c37177e5d2add6e23b (diff) |
[AAI-178 Amsterdam] Make Edge Properties to be
declared by direction
Change-Id: I7603ebdc4986caccd7c8be7e62769765e805c4b2
Signed-off-by: Maharajh, Robby (rx2202) <rx2202@us.att.com>
Diffstat (limited to 'aai-resources/src')
-rw-r--r-- | aai-resources/src/main/java/org/openecomp/aai/dbgen/ForceDeleteTool.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aai-resources/src/main/java/org/openecomp/aai/dbgen/ForceDeleteTool.java b/aai-resources/src/main/java/org/openecomp/aai/dbgen/ForceDeleteTool.java index 1cab272..0cd0531 100644 --- a/aai-resources/src/main/java/org/openecomp/aai/dbgen/ForceDeleteTool.java +++ b/aai-resources/src/main/java/org/openecomp/aai/dbgen/ForceDeleteTool.java @@ -31,7 +31,7 @@ import org.apache.tinkerpop.gremlin.structure.Edge; import org.apache.tinkerpop.gremlin.structure.Vertex; import org.apache.tinkerpop.gremlin.structure.VertexProperty; import org.openecomp.aai.exceptions.AAIException; -import org.openecomp.aai.serialization.db.EdgeProperties; +import org.openecomp.aai.serialization.db.AAIDirection; import org.openecomp.aai.serialization.db.EdgeProperty; import org.openecomp.aai.util.AAIConfig; import org.openecomp.aai.util.AAIConstants; @@ -537,7 +537,7 @@ public class ForceDeleteTool { } try { - Iterator <Vertex> vertI = graph.traversal().V(vtx).union(__.outE().has(EdgeProperties.out(EdgeProperty.IS_PARENT), true).inV(), __.inE().has(EdgeProperties.in(EdgeProperty.IS_PARENT), true).outV()); + Iterator <Vertex> vertI = graph.traversal().V(vtx).union(__.outE().has(EdgeProperty.CONTAINS.toString(), AAIDirection.OUT.toString()).inV(), __.inE().has(EdgeProperty.CONTAINS.toString(), AAIDirection.IN.toString()).outV()); while( vertI != null && vertI.hasNext() ){ totalCount++; Vertex childVtx = vertI.next(); |