main.java.com.cloudant.client.internal.URIBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudant-client Show documentation
Show all versions of cloudant-client Show documentation
Official Cloudant client for Java
package com.cloudant.client.internal;
import java.net.URI;
/**
* Subclass for building a Cloudant account URI.
* This class provides fluent style setters to create and build a URI.
* If a database URI is required, see {@link DatabaseURIHelper}.
*/
public class URIBase extends URIBaseMethods {
public URIBase(URI baseUri) {
this.baseUri = baseUri;
}
@Override
public URIBase returnThis() {
return this;
}
}