Package org.vfny.geoserver.form.data

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


*/
public class DataNamespacesEditorAction extends ConfigAction {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
        UserContainer user, HttpServletRequest request, HttpServletResponse response)
        throws IOException, ServletException {
        DataNamespacesEditorForm namespacesForm = (DataNamespacesEditorForm) form;

        String URI = namespacesForm.getURI();
        String prefix = namespacesForm.getPrefix();

        DataConfig dataConfig = (DataConfig) getDataConfig();
        NameSpaceConfig config = null;
       
        config = getUserContainer(request).getNamespaceConfig();
View Full Code Here

TOP

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

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.