Package org.vfny.geoserver.form.validation

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


            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);
View Full Code Here

TOP

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

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.