net.yadaframework.web.form.YadaFormFieldMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadaweb Show documentation
Show all versions of yadaweb Show documentation
Some useful tasks for the Yada Framework
package net.yadaframework.web.form;
import java.util.HashMap;
import java.util.Map;
/**
* Generic form bean for String values.
*
*
*
*/
public class YadaFormFieldMap {
public Map fieldMap = new HashMap<>();
public Map getMap() {
return fieldMap;
}
}