use of gov.usgs.cida.coastalhazards.util.ogc.CSWService in project coastal-hazards by USGS-CIDA.
the class Item method fetchCswService.
public CSWService fetchCswService() {
CSWService cswService = null;
OGCService ogc = fetchOgcService(ServiceType.csw);
if (ogc instanceof CSWService) {
cswService = (CSWService) ogc;
}
return cswService;
}
Aggregations