Alessandro Pieve 2017-02-06 16:57:44 +00:00
parent 7b19820b88
commit aa3d15e550
1 changed files with 5 additions and 0 deletions

View File

@ -56,6 +56,9 @@ public class PersistenceCouchDB extends PersistenceBackend {
protected void createItem(JsonNode node, String id) throws Exception {
httpCouchClient.put(node.toString(), id);
}
@Override
protected void closeConnection() throws Exception {}
/**
* {@inheritDoc}
@ -79,5 +82,7 @@ public class PersistenceCouchDB extends PersistenceBackend {
Record record = RecordUtility.getRecord(result);
return record;
}
}