X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fonap%2Fcrud%2Fdao%2FGraphDao.java;fp=src%2Fmain%2Fjava%2Forg%2Fonap%2Fcrud%2Fdao%2FGraphDao.java;h=7834bb23e30a0eb2d44bd168c94e619f4dc72b0a;hb=c8d962ad88da4403ae9186e7213a7ce28b82aaa1;hp=c62a7881333e324ffb4aad1e279f4d7af077422e;hpb=a0e716dc093cd8a4a4ec8aaca7bc1635e518527a;p=aai%2Fgizmo.git diff --git a/src/main/java/org/onap/crud/dao/GraphDao.java b/src/main/java/org/onap/crud/dao/GraphDao.java index c62a788..7834bb2 100644 --- a/src/main/java/org/onap/crud/dao/GraphDao.java +++ b/src/main/java/org/onap/crud/dao/GraphDao.java @@ -34,9 +34,9 @@ import org.onap.crud.exception.CrudException; public interface GraphDao { - public Vertex getVertex(String id) throws CrudException; + public Vertex getVertex(String id, String version) throws CrudException; - public Vertex getVertex(String id, String type) throws CrudException; + public Vertex getVertex(String id, String type, String version) throws CrudException; /** * Retrieve all of the edges which are incident to the vertex with the @@ -111,7 +111,7 @@ public interface GraphDao { * @return - The {@link Vertex} object that was created. * @throws CrudException */ - public Vertex addVertex(String type, Map properties) throws CrudException; + public Vertex addVertex(String type, Map properties, String version) throws CrudException; /** * Updates an existing {@link Vertex}. @@ -123,7 +123,7 @@ public interface GraphDao { * @return - The udpated vertex. * @throws CrudException */ - public Vertex updateVertex(String id, String type, Map properties) throws CrudException; + public Vertex updateVertex(String id, String type, Map properties, String version) throws CrudException; /** * Removes the specified vertex from the graph data base. @@ -151,7 +151,7 @@ public interface GraphDao { * @return - The {@link Edge} object that was created. * @throws CrudException */ - public Edge addEdge(String type, Vertex source, Vertex target, Map properties) throws CrudException; + public Edge addEdge(String type, Vertex source, Vertex target, Map properties, String version) throws CrudException; /** * Updates an existing {@link Edge}. @@ -182,12 +182,12 @@ public interface GraphDao { public boolean transactionExists(String id) throws CrudException; - public Vertex addVertex(String type, Map properties, String txId) throws CrudException; + public Vertex addVertex(String type, Map properties, String version, String txId) throws CrudException; - public Edge addEdge(String type, Vertex source, Vertex target, Map properties, String txId) + public Edge addEdge(String type, Vertex source, Vertex target, Map properties, String version, String txId) throws CrudException; - public Vertex updateVertex(String id, String type, Map properties, String txId) throws CrudException; + public Vertex updateVertex(String id, String type, Map properties, String version, String txId) throws CrudException; public Edge updateEdge(Edge edge, String txId) throws CrudException;