view gnv/src/main/java/de/intevation/gnv/action/MapClientStandaloneAction.java @ 982:cd9414538f10

Added possibility to switch to FullScreen-Mode of the MapClient. gnv/trunk@1161 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 07 Jun 2010 09:54:47 +0000
parents
children 28a0628b11b0
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

/**
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public class MapClientStandaloneAction extends ArtifactDatabaseActionBase {

    public final static String MAPCLIENTSTANDALONE_KEY = 
                          "de.intevation.gnv.action.MapClientStandaloneAction";
    /**
     * Constructor
     */
    public MapClientStandaloneAction() {
        super();
    }

    @Override
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                                 HttpServletRequest request,
                                 HttpServletResponse response) throws Exception {
        
        request.setAttribute(MAPCLIENTSTANDALONE_KEY, true);
        return super.execute(mapping, form, request, response);
    }
    

}

http://dive4elements.wald.intevation.org