null
Return the form bean configuration for the specified key, if any; otherwise return null. @param name Name of the form bean configuration to return
460461462463464465466467468469470
if (name == null) { return; } // Look up the FormBeanConfig we are processing FormBeanConfig fbConfig = moduleConfig.findFormBeanConfig(name); if (fbConfig == null) { throw new IllegalArgumentException("Cannot find form bean '" + name + "' configuration"); }
137138139140141142143144145146147
Object object = null; String selector = null; if (formBean != null) { selector = formBean; object = config.findFormBeanConfig(formBean); } else if (forward != null) { selector = forward; object = config.findForwardConfig(forward); } else if (mapping != null) { selector = mapping;