All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.java.com.cloudant.tests.Bar Maven / Gradle / Ivy

There is a newer version: 2.20.1
Show newest version
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 + "]";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy