es.pode.administracion.presentacion.planificador.informeTrabajo.MostrarDescripcionVolver.java Source code

Java tutorial

Introduction

Here is the source code for es.pode.administracion.presentacion.planificador.informeTrabajo.MostrarDescripcionVolver.java

Source

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

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

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

        try {
            forward = _cargar(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>
     * Obtencin de los trabajos pertenecientes a una tarea ejecutada
     * </p>
     */
    private org.apache.struts.action.ActionForward _cargar(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.administracion.presentacion.planificador.informeTrabajo.InformeControllerFactory
                .getInformeControllerInstance()
                .obtenerInformeTrabajo(mapping, (MostrarDescripcionVolverFormImpl) form, request, response);
        forward = mapping.findForward("listar");

        return forward;
    }

}