de.jformchecker.adapter.BeanAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jformchecker-integration Show documentation
Show all versions of jformchecker-integration Show documentation
jFormchecker integration utils that connects it to frameworks/APIs
package de.jformchecker.adapter;
/**
* provides a way to access a bean that is passed as parameter-value holder
* @author jochen
*
*/
public class BeanAdapter {
public String submitted;
public String getSubmitted() {
return submitted;
}
public void setSubmitted(String submitted) {
this.submitted = submitted;
}
}