Package org.vfny.geoserver.form.data

Examples of org.vfny.geoserver.form.data.StylesNewForm


*/
public class StylesNewAction extends ConfigAction {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
            UserContainer user, HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {
        StylesNewForm newForm = (StylesNewForm) form;
        final String styleID = newForm.getStyleID();
       
        DataConfig config = getDataConfig();
        if( config.getStyles().containsKey( styleID ) ){
            ActionErrors errors = new ActionErrors();
            errors.add("selectedStyle",
View Full Code Here

TOP

Related Classes of org.vfny.geoserver.form.data.StylesNewForm

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.