All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vfny.geoserver.action.data.CoverageStoresNewAction Maven / Gradle / Ivy

The newest version!
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org.  All rights reserved.
 * This code is licensed under the GPL 2.0 license, availible at the root
 * application directory.
 */
package org.vfny.geoserver.action.data;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.vfny.geoserver.action.ConfigAction;
import org.vfny.geoserver.config.CoverageStoreConfig;
import org.vfny.geoserver.form.data.CoverageStoresNewForm;
import org.vfny.geoserver.global.UserContainer;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


/**
 * Create a new CoverageStoreConfig based on user's input.
 *
 * 

* Will need to update the current DataFormatId as stored in session context. *

* * @author User, Refractions Research, Inc. * @author dmzwiers * @author $Author: Alessio Fabiani ([email protected]) $ (last modification) * @author $Author: Simone Giannecchini ([email protected]) $ (last modification) * @version $Id: CoverageStoresNewAction.java 6326 2007-03-15 18:36:40Z jdeolive $ */ public final class CoverageStoresNewAction extends ConfigAction { public ActionForward execute(ActionMapping mapping, ActionForm form, UserContainer user, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { final CoverageStoresNewForm newForm = (CoverageStoresNewForm) form; final CoverageStoreConfig newFormatConfig; newFormatConfig = new CoverageStoreConfig(newForm.getDataFormatID(), newForm.getSelectedDescription()); getUserContainer(request).setDataFormatConfig(newFormatConfig); return mapping.findForward("config.data.format.editor"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy