Package org.vfny.geoserver.form.validation

Examples of org.vfny.geoserver.form.validation.ValidationTestSuiteNewForm


public class ValidationTestSuiteNewAction extends ConfigAction {
    public ActionForward execute(ActionMapping mapping,
            ActionForm incomingForm, UserContainer user, HttpServletRequest request,
            HttpServletResponse response){
       
        ValidationTestSuiteNewForm form = (ValidationTestSuiteNewForm) incomingForm;
       
        String newName = form.getNewName();
       
        TestSuiteConfig suiteConfig = new TestSuiteConfig();
        suiteConfig.setName(newName);

        ServletContext context = this.getServlet().getServletContext();
View Full Code Here

TOP

Related Classes of org.vfny.geoserver.form.validation.ValidationTestSuiteNewForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.