wfscapabilities.java

来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 62 行

JAVA
62
字号
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 + =
减小字号Ctrl + -
显示快捷键?