Modifier and Type | Method and Description |
---|---|
Response |
Replicator.remove()
Removes a document from the replicator database.
|
Response |
CouchDbClientBase.remove(Object object)
Removes an object from the database, the object must have the correct id and revision values.
|
Response |
CouchDbClientBase.remove(String id,
String rev)
Removes a document from the database, given both an id and revision values.
|
Response |
Replicator.save()
Adds a new document to the replicator database.
|
Response |
CouchDbClientBase.save(Object object)
Saves an object in the database.
|
Response |
CouchDbClientBase.saveAttachment(InputStream instream,
String name,
String contentType)
Saves an attachment under a new document with a generated UUID as the document id.
|
Response |
CouchDbClientBase.saveAttachment(InputStream instream,
String name,
String contentType,
String docId,
String docRev)
Saves an attachment under an existing document given both a document id
and revision, or under a new document given only the document id.
|
Response |
CouchDbDesign.synchronizeWithDb(DesignDocument document)
Synchronizes a design document to the Database.
|
Response |
CouchDbClientBase.update(Object object)
Updates an object in the database, the object must have the correct id and revision values.
|
Modifier and Type | Method and Description |
---|---|
List<Response> |
CouchDbClientBase.bulk(List<?> objects,
boolean allOrNothing)
Performs a Bulk Documents request.
|
Copyright © 2011–2016. All rights reserved.