summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/crud/service/TestDao.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap/crud/service/TestDao.java')
-rw-r--r--src/test/java/org/onap/crud/service/TestDao.java14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/test/java/org/onap/crud/service/TestDao.java b/src/test/java/org/onap/crud/service/TestDao.java
index 20cd04a..4f1d34e 100644
--- a/src/test/java/org/onap/crud/service/TestDao.java
+++ b/src/test/java/org/onap/crud/service/TestDao.java
@@ -84,7 +84,7 @@ public class TestDao implements GraphDao {
}
@Override
- public List<Edge> getVertexEdges(String id, Map<String, String> queryParams) throws CrudException {
+ public List<Edge> getVertexEdges(String id, Map<String, String> queryParams, String txId) throws CrudException {
List<Edge> list = new ArrayList<Edge>();
list.add(Edge.fromJson(champEdge));
return list;
@@ -159,7 +159,7 @@ public class TestDao implements GraphDao {
}
@Override
- public void deleteEdge(String id, String type) throws CrudException {
+ public void deleteEdge(String id) throws CrudException {
}
@@ -217,13 +217,13 @@ public class TestDao implements GraphDao {
}
@Override
- public void deleteEdge(String id, String type, String txId) throws CrudException {
+ public void deleteEdge(String id, String txId) throws CrudException {
// TODO Auto-generated method stub
}
@Override
- public Edge getEdge(String id, String type, String txId) throws CrudException {
+ public Edge getEdge(String id, String txId) throws CrudException {
return Edge.fromJson(champEdge);
}
@@ -232,4 +232,10 @@ public class TestDao implements GraphDao {
headers.add("etag", "test123");
return headers;
}
+
+ @Override
+ public Edge getEdge(String id) throws CrudException {
+ // TODO Auto-generated method stub
+ return null;
+ }
} \ No newline at end of file