test.java.com.cloudant.tests.Movie 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;
public class Movie {
private String Movie_name;
private int Movie_year;
/**
* @return the movie_name
*/
public String getMovie_name() {
return Movie_name;
}
/**
* @return the movie_year
*/
public int getMovie_year() {
return Movie_year;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return Movie_name + ", " + Movie_year;
}
}