| org.geotools.catalog.ServiceFinder
All known Subclasses: org.geotools.catalog.adaptable.AdaptingServiceFinder, org.geotools.catalog.defaults.DefaultServiceFinder, org.geotools.catalog.defaults.DefaultServiceFactory,
ServiceFinder | public interface ServiceFinder (Code) | | Builds service proxies or clones (with an id).
Where not specified, sensible defaults will be added to the create options. aka Magic will occur
here :-)
author: David Zwiers, Refractions Research author: Justin Deoliveira, The Open Planning Project |
Method Summary | |
List | aquire(Map params) This will create a new IService magically. | List | aquire(URI target) This method generates a default set of params, and calls aquire(params). | List | aquire(URI id, Map params) This methos is intended to be used when replacing an IService entry in a catalog, or for
cloning. |
aquire | List aquire(Map params)(Code) | | This will create a new IService magically. In some cases sensible default parameters may be
added, in addition to parameters removed. An ID will be generated.
Parameters: params - List |
aquire | List aquire(URI id, Map params)(Code) | | This methos is intended to be used when replacing an IService entry in a catalog, or for
cloning. This allows you to retain the URI id, while providing new parameters. This is also
intended for persistence frameworks to use. WARNING: This may have undesired
results/conflicts when added to a ICatalog if care is not taken when using this method.
Parameters: id - Parameters: params - List |
|
|