public interface Repository
GeoTools includes a really simple RepositoryImpl which you can use to manage DataStore in your own application; or if you have your own advanced "catalog" you can make your own implementation.
Modifier and Type | Method and Description |
---|---|
DataAccess<?,?> |
access(Name name)
Search for the DataAccess (may be a DataStore) by name.
|
DataStore |
dataStore(Name name)
Search for the DataStore by name.
|
List<DataStore> |
getDataStores()
List of available DataStore instances; these are considered to be live/connected datastores
under the management of the application and should not be closed or otherwise harmed by
client code.
|
DataAccess<?,?> access(Name name)
name
- The Name (namespace and name) to search forDataStore dataStore(Name name)
Name
- The typeName (namespace and name) to search forCopyright © 1996–2019 Geotools. All rights reserved.