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

org.vfny.geoserver.action.validation.ValidationTestNewAction Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
/*
 * Created on Jan 23, 2004
 *
 * To change the template for this generated file go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
package org.vfny.geoserver.action.validation;

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.validation.PlugInConfig;
import org.vfny.geoserver.config.validation.TestConfig;
import org.vfny.geoserver.config.validation.TestSuiteConfig;
import org.vfny.geoserver.config.validation.ValidationConfig;
import org.vfny.geoserver.form.validation.ValidationTestNewForm;
import org.vfny.geoserver.global.UserContainer;
import java.util.HashMap;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


/**
 * ValidationTestNewAction purpose.
 * 

* Description of ValidationTestNewAction ... *

* *

* Capabilities: *

*
    *
  • * Feature: description *
  • *
*

* Example Use: *

*

 * ValidationTestNewAction x = new ValidationTestNewAction(...);
 * 
* * @author User, Refractions Research, Inc. * @author $Author: dmzwiers $ (last modification) * @version $Id: ValidationTestNewAction.java 6177 2007-02-19 10:11:27Z aaime $ */ public class ValidationTestNewAction extends ConfigAction { public ActionForward execute(ActionMapping mapping, ActionForm incomingForm, UserContainer user, HttpServletRequest request, HttpServletResponse response) { ServletContext context = this.getServlet().getServletContext(); ValidationConfig validationConfig = (ValidationConfig) context.getAttribute(ValidationConfig.CONFIG_KEY); ValidationTestNewForm form = (ValidationTestNewForm) incomingForm; String newName = form.getNewName(); String selectedPlugIn = form.getSelectedPlugIn(); PlugInConfig plugIn = validationConfig.getPlugIn(selectedPlugIn); TestConfig testConfig = new TestConfig(); testConfig.setName(newName); testConfig.setPlugIn(plugIn); testConfig.setArgs(new HashMap()); TestSuiteConfig suiteConfig = (TestSuiteConfig) request.getSession() .getAttribute(TestSuiteConfig.CURRENTLY_SELECTED_KEY); suiteConfig.addTest(testConfig); getApplicationState().notifyConfigChanged(); request.getSession().setAttribute(TestConfig.CURRENTLY_SELECTED_KEY, testConfig); return mapping.findForward("validationTestEditor"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy