Java tutorial
// license-header java merge-point package es.pode.empaquetador.presentacion.basico.asociar.archivos; /** * */ public final class ArchivosAsociar extends org.apache.struts.action.Action { public org.apache.struts.action.ActionForward execute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.lang.Exception { final ArchivosAsociarFormImpl specificForm = (ArchivosAsociarFormImpl) form; org.apache.struts.action.ActionForward forward = null; try { forward = _asociar(mapping, form, request, response); } catch (java.lang.Exception exception) { // we populate the current form with only the request parameters Object currentForm = request.getSession().getAttribute("form"); // if we can't get the 'form' from the session, try from the request if (currentForm == null) { currentForm = request.getAttribute("form"); } if (currentForm != null) { final java.util.Map parameters = new java.util.HashMap(); for (final java.util.Enumeration names = request.getParameterNames(); names.hasMoreElements();) { final String name = String.valueOf(names.nextElement()); parameters.put(name, request.getParameter(name)); } try { org.apache.commons.beanutils.BeanUtils.populate(currentForm, parameters); } catch (java.lang.Exception populateException) { // ignore if we have an exception here (we just don't populate). } } throw exception; } request.getSession().setAttribute("form", form); return forward; } /** * <p> * Asocia el archivo / carpeta elegido para su inclusion en el * recurso (grupo) modificado. En caso de que sea una carpeta, se * asociaran todos los contenidos en profundidad * </p> */ private org.apache.struts.action.ActionForward _asociar(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.lang.Exception { org.apache.struts.action.ActionForward forward = null; es.pode.empaquetador.presentacion.basico.asociar.archivos.AsociacionArchivosControllerFactory .getAsociacionArchivosControllerInstance() .asociar(mapping, (ArchivosAsociarFormImpl) form, request, response); forward = _recuperarDatos(mapping, form, request, response); return forward; } /** * */ private org.apache.struts.action.ActionForward _recuperarDatos(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.lang.Exception { org.apache.struts.action.ActionForward forward = null; es.pode.empaquetador.presentacion.basico.asociar.archivos.AsociacionArchivosControllerFactory .getAsociacionArchivosControllerInstance() .recuperarDatos(mapping, (ArchivosAsociarFormImpl) form, request, response); forward = mapping.findForward("archivos"); return forward; } }