📄 wfscapabilities.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 + -