Skip to content

Instantly share code, notes, and snippets.

@mvniekerk
Created November 26, 2015 11:16
Show Gist options
  • Save mvniekerk/dec7bf640c9d559b3a14 to your computer and use it in GitHub Desktop.
Save mvniekerk/dec7bf640c9d559b3a14 to your computer and use it in GitHub Desktop.
A sample bean class
public class GiveItBeans {
private String stringBean;
private boolean wildValue;
public String getStringBean() {
return this.stringBean;
}
public void setStringBean(String stringBean) {
this.stringBean = stringBean;
}
public boolean isWildValue() {
return this.wildValue;
}
public void setWildValue(boolean value) {
this.wildValue = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment