net.joningi.icndb.Joke Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icndb-java-api Show documentation
Show all versions of icndb-java-api Show documentation
Java API client for The Internet Chuck Norris Database (http://www.icndb.com/)
The newest version!
package net.joningi.icndb;
public class Joke {
private int id;
private String joke;
public int getId() {
return id;
}
public void setId(final int id) {
this.id = id;
}
public String getJoke() {
return joke;
}
public void setJoke(final String joke) {
this.joke = joke;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy