Java tutorial
// license-header java merge-point package es.pode.gestorFlujo.presentacion.objetosPendientes.Publicar; /** * */ public final class PublicarODECancelar 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 PublicarODECancelarFormImpl specificForm = (PublicarODECancelarFormImpl) form; org.apache.struts.action.ActionForward forward = null; try { forward = __despublicado(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; } /** * */ private org.apache.struts.action.ActionForward __despublicado(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 java.lang.String value = java.lang.String .valueOf(es.pode.gestorFlujo.presentacion.objetosPendientes.Publicar.PublicarControllerFactory .getPublicarControllerInstance() .despublicado(mapping, (PublicarODECancelarFormImpl) form, request, response)); if (value.equals("false")) { return mapping.findForward("objetos.pendientes.cu"); } if (value.equals("true")) { return mapping.findForward("objetos.despublicados.cu"); } // we take the last action in case we have an invalid return value from the controller return mapping.findForward("objetos.despublicados.cu"); } }