Uses of Class
thredds.catalog.InvService

Packages that use InvService
thredds.catalog Reads and writes THREDDS Dataset Inventory Catalog XML documents. 
 

Uses of InvService in thredds.catalog
 

Methods in thredds.catalog that return InvService
 InvService InvCatalog.findService(java.lang.String name)
          Find the named service declared in the top level of this catalog.
 InvService InvCatalogRef.findService(java.lang.String p0)
           
 InvService InvDataset.findService(java.lang.String name)
          Find the named service declared in this dataset or one of its parents.
 InvService InvDatasetImplProxy.findService(java.lang.String p0)
           
 InvService InvAccess.getService()
           
 InvService InvCatalogRef.getServiceDefault()
           
 InvService InvDataset.getServiceDefault()
          Find the default service for this dataset and its children.
 InvService InvDatasetImplProxy.getServiceDefault()
           
 

Methods in thredds.catalog that return types with arguments of type InvService
 java.util.List<InvService> InvCatalog.getServices()
          Get top-level services.
 java.util.List<InvService> InvService.getServices()
          Get nested services; only if getServiceType() == ServiceType.COMPOUND.
 java.util.List<InvService> InvDatasetImpl.getServicesLocal()
          Get services attached specifically to this dataset.
 java.util.List<InvService> InvDatasetImplProxy.getServicesLocal()
           
 

Methods in thredds.catalog with parameters of type InvService
 void InvCatalogImpl.addService(InvService s)
          Add Service (1.0)
 void InvDatasetImpl.addService(InvService service)
          Deprecated. put services in catalog
 void InvDatasetImplProxy.addService(InvService p0)
           
 void InvService.addService(InvService service)
          Add a nested service to a service of type COMPOUND.
 void InvDatasetImpl.removeService(InvService service)
          Deprecated. put services in catalog
 void InvDatasetImplProxy.removeService(InvService p0)
           
 

Method parameters in thredds.catalog with type arguments of type InvService
 void InvDatasetImpl.setServicesLocal(java.util.List<InvService> s)
          Set the list of services attached specifically to this dataset.
 void InvDatasetImplProxy.setServicesLocal(java.util.List<InvService> p0)
           
 

Constructors in thredds.catalog with parameters of type InvService
InvAccessImpl(InvDataset dataset, java.lang.String urlPath, InvService service)
          Construct from an existing InvService.