Package org.geotools.data.mongodb
Interface MongoSchemaStore
-
- All Known Implementing Classes:
MongoSchemaDBStore
,MongoSchemaFileStore
public interface MongoSchemaStore
- Author:
- tkunicki@boundlessgeo.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
void
deleteSchema(Name name)
SimpleFeatureType
retrieveSchema(Name name)
void
storeSchema(SimpleFeatureType schema)
List<String>
typeNames()
-
-
-
Method Detail
-
storeSchema
void storeSchema(SimpleFeatureType schema) throws IOException
- Throws:
IOException
-
retrieveSchema
SimpleFeatureType retrieveSchema(Name name) throws IOException
- Throws:
IOException
-
deleteSchema
void deleteSchema(Name name) throws IOException
- Throws:
IOException
-
close
void close()
-
-