X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fopenecomp%2Fcrud%2Fservice%2FCrudGraphDataService.java;h=a8c0248c2d0b102100577f204d69c629d791032b;hb=refs%2Fchanges%2F95%2F9995%2F1;hp=e6d67483a3eef3160d7837d0c410764e8da027f5;hpb=900114bf694a0b34e8de3d283b5929fed4aaf65d;p=aai%2Fgizmo.git diff --git a/src/main/java/org/openecomp/crud/service/CrudGraphDataService.java b/src/main/java/org/openecomp/crud/service/CrudGraphDataService.java index e6d6748..a8c0248 100644 --- a/src/main/java/org/openecomp/crud/service/CrudGraphDataService.java +++ b/src/main/java/org/openecomp/crud/service/CrudGraphDataService.java @@ -159,6 +159,10 @@ public class CrudGraphDataService { } + public Vertex getVertex(String id) throws CrudException { + return dao.getVertex(id); + } + public String getVertex(String version, String id, String type) throws CrudException { type = OxmModelValidator.resolveCollectionType(version, type); Vertex vertex = dao.getVertex(id, type);