Examples of WFSDescriptionForm


Examples of org.vfny.geoserver.form.wfs.WFSDescriptionForm

*/
public final class WFSDescriptionAction extends ConfigAction {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
        UserContainer user, HttpServletRequest request, HttpServletResponse response)
        throws IOException, ServletException {
        WFSDescriptionForm descriptionForm = (WFSDescriptionForm) form;

        String name = descriptionForm.getName();
        String title = descriptionForm.getTitle();
        String accessConstraints = descriptionForm.getAccessConstraints();
        String fees = descriptionForm.getFees();
        String maintainer = descriptionForm.getMaintainer();
        String keywords = descriptionForm.getKeywords();
        String _abstract = descriptionForm.get_abstract();

        WFSConfig config = getWFSConfig();
        config.setName(name);
        config.setTitle(title);
        config.setAccessConstraints(accessConstraints);
View Full Code Here

Examples of org.vfny.geoserver.form.wfs.WFSDescriptionForm

            };

        action = new WFSDescriptionAction();
        action.setServlet(actionServlet);

        form = new WFSDescriptionForm();

        //form.init( actionServlet, null );
        form.setServlet(actionServlet);
        form.reset(null, null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.