| org.geotools.data.VersioningDataStore
All known Subclasses: org.geotools.data.postgis.VersionedPostgisDataStore,
VersioningDataStore | public interface VersioningDataStore extends DataStore(Code) | | A data store that can version enable feature types, and then keep version
history for those.
TODO: add better docs on how to leverage featureVersion in standard queries,
as well as
author: Andrea Aime, TOPP |
Method Summary | |
public boolean | isVersioned(String typeName) | public void | setVersioned(String typeName, boolean versioned, String author, String message) Alters the versioned state of a feature type
Parameters: typeName - the type name that must be changed Parameters: versioned - if true, the type gets version enabled, if false versioning isdisabled Parameters: t - the transaction used to performe version enabling. |
isVersioned | public boolean isVersioned(String typeName) throws IOException(Code) | | Returns true if the specified feature type is versioned, false otherwise
Parameters: typeName - |
setVersioned | public void setVersioned(String typeName, boolean versioned, String author, String message) throws IOException(Code) | | Alters the versioned state of a feature type
Parameters: typeName - the type name that must be changed Parameters: versioned - if true, the type gets version enabled, if false versioning isdisabled Parameters: t - the transaction used to performe version enabling. It shallcontain user and commit message as properties. throws: IOException - |
|
|