- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.geoserver.wms.WMSInfoImpl.getIdentifiers()
方法的一些代码示例,展示了WMSInfoImpl.getIdentifiers()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WMSInfoImpl.getIdentifiers()
方法的具体详情如下:
包路径:org.geoserver.wms.WMSInfoImpl
类名称:WMSInfoImpl
方法名:getIdentifiers
暂无
代码示例来源:origin: org.geoserver/restconfig
private void addDefaultsIfMissing(ServiceInfo serviceInfo) {
if (serviceInfo instanceof WMSInfoImpl) {
WMSInfoImpl wmsInfo = (WMSInfoImpl) serviceInfo;
if (wmsInfo.getAuthorityURLs() == null) {
List<AuthorityURLInfo> authorityURLS = new ArrayList<AuthorityURLInfo>();
wmsInfo.setAuthorityURLs(authorityURLS);
}
if (wmsInfo.getIdentifiers() == null) {
List<LayerIdentifierInfo> identifiers = new ArrayList<LayerIdentifierInfo>();
wmsInfo.setIdentifiers(identifiers);
}
if (wmsInfo.getSRS() == null) {
List<String> srsList = new ArrayList<String>();
wmsInfo.setSRS(srsList);
}
} else if (serviceInfo instanceof WFSInfoImpl) {
WFSInfoImpl wfsInfo = (WFSInfoImpl) serviceInfo;
if (wfsInfo.getGML() == null) {
GMLInfoImpl gml3Info = new GMLInfoImpl();
gml3Info.setOverrideGMLAttributes(true);
Map<WFSInfo.Version, GMLInfo> gml = new HashMap<WFSInfo.Version, GMLInfo>();
wfsInfo.setGML(gml);
wfsInfo.getGML().put(WFSInfo.Version.V_11, gml3Info);
wfsInfo.getGML().put(WFSInfo.Version.V_10, gml3Info);
wfsInfo.getGML().put(WFSInfo.Version.V_20, gml3Info);
}
}
}
代码示例来源:origin: org.geoserver/gs-wms
@Override
public Object doUnmarshal(
Object result, HierarchicalStreamReader reader, UnmarshallingContext context) {
WMSInfoImpl service = (WMSInfoImpl) super.doUnmarshal(result, reader, context);
MetadataMap metadata = service.getMetadata();
// for backwards compatibility with 2.1.3+ data directories, check if the auth urls and
// identifiers are stored in the metadata map
if (service.getAuthorityURLs() == null && metadata != null) {
String serialized = metadata.get("authorityURLs", String.class);
List<AuthorityURLInfo> authorities;
if (serialized == null) {
authorities = new ArrayList<AuthorityURLInfo>(1);
} else {
authorities = AuthorityURLInfoInfoListConverter.fromString(serialized);
}
service.setAuthorityURLs(authorities);
}
if (service.getIdentifiers() == null && metadata != null) {
String serialized = metadata.get("identifiers", String.class);
List<LayerIdentifierInfo> identifiers;
if (serialized == null) {
identifiers = new ArrayList<LayerIdentifierInfo>(1);
} else {
identifiers = LayerIdentifierInfoListConverter.fromString(serialized);
}
service.setIdentifiers(identifiers);
}
return service;
}
}
本文整理了Java中org.geoserver.wms.WMSInfoImpl.getMetadata()方法的一些代码示例,展示了WMSInfoImpl.getMetadata()的具体用法。这些代
本文整理了Java中org.geoserver.wms.WMSInfoImpl.setWatermark()方法的一些代码示例,展示了WMSInfoImpl.setWatermark()的具体用法。这
本文整理了Java中org.geoserver.wms.WMSInfoImpl.getIdentifiers()方法的一些代码示例,展示了WMSInfoImpl.getIdentifiers()的具体
本文整理了Java中org.geoserver.wms.WMSInfoImpl.getSRS()方法的一些代码示例,展示了WMSInfoImpl.getSRS()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中org.geoserver.wms.WMSInfoImpl.setTitle()方法的一些代码示例,展示了WMSInfoImpl.setTitle()的具体用法。这些代码示例主要来
本文整理了Java中org.geoserver.wms.WMSInfoImpl.setId()方法的一些代码示例,展示了WMSInfoImpl.setId()的具体用法。这些代码示例主要来源于Gith
本文整理了Java中org.geoserver.wms.WMSInfoImpl.setSRS()方法的一些代码示例,展示了WMSInfoImpl.setSRS()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中org.geoserver.wms.WMSInfoImpl.()方法的一些代码示例,展示了WMSInfoImpl.()的具体用法。这些代码示例主要来源于Github/Stackov
本文整理了Java中org.geoserver.wms.WMSInfoImpl.getAuthorityURLs()方法的一些代码示例,展示了WMSInfoImpl.getAuthorityURLs(
我是一名优秀的程序员,十分优秀!