⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wfscapabilities.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.common.gazetteer;


/**
 * Class that represents a WFS capabilities document stored
 * in memory.
 */
public class WFSCapabilities {
    /**
     * URL for the get feature POST method.
     */
    private String m_getFeatureUrlPost = null;

    /**
     * {@link String} reference to the actual WFS
     * capabilities document.
     */
    private String m_rawDocument = null;

    /**
     * Default no-args constructor.
     */
    public WFSCapabilities() {
    }

    /**
     * Gets the URL for the get feature POST method.
     *
     * @return {@link String} URL of the get feature POST method.
     */
    public String getGetFeatureUrlPost() {
        return m_getFeatureUrlPost;
    }

    /**
     * Sets the URL for the get feature POST method.
     *
     * @param url {@link String} URL of the get feature POST method.
     */
    public void setGetFeatureUrlPost(String url) {
        m_getFeatureUrlPost = url;
    }

    /**
     * Gets the actual WFS capabilities document.
     *
     * @return {@link String} actual WFS capabilities document.
     */
    public String getRawCapabilitiesDocument() {
        return m_rawDocument;
    }

    /**
     * Sets the actual WFS capabilities document.
     *
     * @param doc {@link String} actual WFS capabilities document.
     */
    public void setRawCapabilitiesDocument(String doc) {
        m_rawDocument = doc;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -