* @param application the servlet context
* @deprecated This will be removed in VelocityTools 1.2
*/
public static FormBeanConfig getFormBean(String name, ServletContext app)
{
ActionFormBeans formBeans = getActionFormBeans(app);
if (formBeans == null)
{
return null;
}
return formBeans.findFormBean(name);
}