Package org.vfny.geoserver.form.data

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


*/
public class DataNamespacesNewAction extends ConfigAction {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
            UserContainer user, HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {
        DataNamespacesNewForm namespacesForm = (DataNamespacesNewForm) form;
       
        String prefix = namespacesForm.getPrefix();

        NameSpaceConfig config = new NameSpaceConfig();
        config.setPrefix(prefix);
       
        getUserContainer(request).setNamespaceConfig(config);
View Full Code Here

TOP

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

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.