de.gesellix.couchdb.CouchDbDocument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of couchdb-client Show documentation
Show all versions of couchdb-client Show documentation
A CouchDB client written in Groovy
The newest version!
package de.gesellix.couchdb;
public interface CouchDbDocument {
String getId();
String getRevision();
String getDateCreated();
void setDateCreated(Object String);
String getDateUpdated();
void setDateUpdated(Object String);
}