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

de.jformchecker.adapter.BeanAdapter Maven / Gradle / Ivy

There is a newer version: 0.1.18
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy