use of gov.usgs.cida.coastalhazards.util.ogc.WMSService in project coastal-hazards by USGS-CIDA.
the class Item method fetchWmsService.
/**
* Get the WMSService to display from the services
*
* @return
*/
public WMSService fetchWmsService() {
WMSService wmsService = null;
OGCService ogc = fetchOgcService(ServiceType.proxy_wms);
if (ogc instanceof WMSService) {
wmsService = (WMSService) ogc;
}
return wmsService;
}
Aggregations