de.gesellix.couchdb.CouchDbDesignDocument 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;
import java.util.Map;
public interface CouchDbDesignDocument {
String getId();
String getRevision();
Map getViews();
void setViews(Map views);
}