test.java.com.cloudant.tests.Bar 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.tests;
import com.cloudant.client.api.model.Document;
public class Bar extends Document {
private String bar;
public Bar() {
}
public Bar(String id) {
this.setId(id);
}
public String getBar() {
return bar;
}
public void setBar(String bar) {
this.bar = bar;
}
@Override
public String toString() {
return "Bar [bar=" + bar + "]";
}
}