es.pode.administracion.presentacion.planificador.descripcionTarea.MostrarCargaODEsVolver.java Source code

Java tutorial

Introduction

Here is the source code for es.pode.administracion.presentacion.planificador.descripcionTarea.MostrarCargaODEsVolver.java

Source

// license-header java merge-point
package es.pode.administracion.presentacion.planificador.descripcionTarea;

/**
 * 
 */
public final class MostrarCargaODEsVolver 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 MostrarCargaODEsVolverFormImpl specificForm = (MostrarCargaODEsVolverFormImpl) form;

        org.apache.struts.action.ActionForward forward = null;

        try {
            forward = mapping.findForward("volver");
        } 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;
    }

}