Uses of Class
org.deegree.feature.persistence.FeatureStoreException

Packages that use FeatureStoreException
org.deegree.feature.persistence   
org.deegree.feature.persistence.lock   
org.deegree.feature.persistence.memory   
org.deegree.feature.persistence.postgis   
org.deegree.feature.persistence.shape   
org.deegree.feature.persistence.simplesql   
org.deegree.rendering.r3d.opengl.rendering.dem.texturing   
 

Uses of FeatureStoreException in org.deegree.feature.persistence
 

Methods in org.deegree.feature.persistence that throw FeatureStoreException
 FeatureStoreTransaction FeatureStore.acquireTransaction()
          Acquires transactional access to the feature store.
 void FeatureStoreTransaction.commit()
          Makes the changes persistent that have been performed in this transaction and releases the transaction instance so other clients may acquire a transaction on the FeatureStore.
static FeatureStore FeatureStoreManager.create(java.net.URL configURL)
          Returns an uninitialized FeatureStore instance that's created from the specified FeatureStore configuration document.
 void BlobCodec.encode(GMLObject object, java.util.Map<java.lang.String,java.lang.String> nsContext, java.io.OutputStream os, CRS crs)
          Encodes the given GMLObject to the specified output stream.
 Envelope FeatureStore.getEnvelope(javax.xml.namespace.QName ftName)
          Returns the envelope for all stored features of the given type.
 FeatureStore FeatureStoreProvider.getFeatureStore(java.net.URL configURL)
          Creates a new FeatureStore instance from the given configuration document.
 LockManager FeatureStore.getLockManager()
          Returns the associated LockManager.
 GMLObject FeatureStore.getObjectById(java.lang.String id)
          Retrieves the stored object with a certain id.
 void FeatureStore.init()
          Called by the container to indicate that this FeatureStore instance is being placed into service.
 int FeatureStoreTransaction.performDelete(IdFilter filter, Lock lock)
          Deletes the features from the FeatureStore that are matched by the given filter.
 int FeatureStoreTransaction.performDelete(javax.xml.namespace.QName ftName, OperatorFilter filter, Lock lock)
          Deletes the features from the FeatureStore that are matched by the given filter and type.
 java.util.List<java.lang.String> FeatureStoreTransaction.performInsert(FeatureCollection fc, FeatureStoreTransaction.IDGenMode mode)
          Inserts the given FeaureCollection into the FeatureStore (including subfeatures).
 int FeatureStoreTransaction.performUpdate(javax.xml.namespace.QName ftName, java.util.List<Property> replacementProps, Filter filter, Lock lock)
          Performs an update operation against the FeatureStore.
 FeatureResultSet FeatureStore.query(Query query)
          Performs the given query and returns the matching features as a FeatureResultSet.
 FeatureResultSet FeatureStore.query(Query[] queries)
          Performs the given queries and returns the matching features as a FeatureResultSet.
 int FeatureStore.queryHits(Query query)
          Returns the number of features that are matched by the given query.
 int FeatureStore.queryHits(Query[] queries)
          Returns the number of features that are matched by the given queries.
static void FeatureStoreManager.registerAndInit(FeatureStore fs, java.lang.String id)
           
 void FeatureStoreTransaction.rollback()
          Aborts the changes that have been performed in this transaction and releases the transaction instance so other clients may acquire a transaction on the FeatureStore.
 

Uses of FeatureStoreException in org.deegree.feature.persistence.lock
 

Methods in org.deegree.feature.persistence.lock that throw FeatureStoreException
 Lock DefaultLockManager.acquireLock(LockOperation[] lockRequests, boolean mustLockAll, long expireTimeout)
           
 Lock LockManager.acquireLock(LockOperation[] lockRequests, boolean mustLockAll, long expireTimeout)
          Acquires a lock for the specified features instances.
 CloseableIterator<Lock> LockManager.getActiveLocks()
          Returns all active locks.
 CloseableIterator<java.lang.String> Lock.getFailedToLockFeatures()
          Returns the ids of all features that have been requested to be locked, but which couldn't.
 Lock DefaultLockManager.getLock(java.lang.String lockId)
           
 Lock LockManager.getLock(java.lang.String lockId)
          Returns the active lock with the given id.
 CloseableIterator<java.lang.String> Lock.getLockedFeatures()
          Returns the ids of all locked features.
 boolean DefaultLockManager.isFeatureLocked(java.lang.String fid)
           
 boolean LockManager.isFeatureLocked(java.lang.String fid)
          Returns whether an active lock on the specified feature exists.
 boolean DefaultLockManager.isFeatureModifiable(java.lang.String fid, java.lang.String lockId)
           
 boolean LockManager.isFeatureModifiable(java.lang.String fid, java.lang.String lockId)
          Returns whether the specified feature is modifiable for the owner of the specified lock.
 boolean Lock.isLocked(java.lang.String fid)
          Returns whether this Lock involves the specified feature.
 void Lock.release()
          Releases all locked features (invalidates the lock).
 void Lock.release(javax.xml.namespace.QName ftName, Filter filter)
          Releases the specified features from the lock.
 void Lock.release(java.lang.String fid)
          Releases the specified feature from the lock (if it was locked).
 

Constructors in org.deegree.feature.persistence.lock that throw FeatureStoreException
DefaultLockManager(FeatureStore store, java.lang.String jdbcConnId)
          Creates a new DefaultLockManager for the given FeatureStore.
 

Uses of FeatureStoreException in org.deegree.feature.persistence.memory
 

Methods in org.deegree.feature.persistence.memory that throw FeatureStoreException
 FeatureStoreTransaction MemoryFeatureStore.acquireTransaction()
           
 FeatureStore MemoryFeatureStoreProvider.getFeatureStore(java.net.URL configURL)
           
 LockManager MemoryFeatureStore.getLockManager()
           
 FeatureResultSet MemoryFeatureStore.query(Query query)
           
 FeatureResultSet MemoryFeatureStore.query(Query[] queries)
           
 int MemoryFeatureStore.queryHits(Query query)
           
 int MemoryFeatureStore.queryHits(Query[] queries)
           
 

Constructors in org.deegree.feature.persistence.memory that throw FeatureStoreException
MemoryFeatureStore(java.net.URL docURL, ApplicationSchema schema)
          Creates a new MemoryFeatureStore that is backed by the given GML file.
 

Uses of FeatureStoreException in org.deegree.feature.persistence.postgis
 

Methods in org.deegree.feature.persistence.postgis that throw FeatureStoreException
 FeatureStoreTransaction PostGISFeatureStore.acquireTransaction()
           
 void PostGISFeatureStoreTransaction.commit()
           
 java.lang.String[] PostGISFeatureStoreProvider.getDDL(java.net.URL configURL)
          Returns the CREATE-statements for setting up the tables needed for the referenced configuration.
 Envelope PostGISFeatureStore.getEnvelope(javax.xml.namespace.QName ftName)
           
 FeatureStore PostGISFeatureStoreProvider.getFeatureStore(java.net.URL configURL)
           
 LockManager PostGISFeatureStore.getLockManager()
           
 GMLObject PostGISFeatureStore.getObjectById(java.lang.String id)
           
 void PostGISFeatureStore.init()
           
 int PostGISFeatureStoreTransaction.performDelete(IdFilter filter, Lock lock)
           
 int PostGISFeatureStoreTransaction.performDelete(javax.xml.namespace.QName ftName, OperatorFilter filter, Lock lock)
           
 java.util.List<java.lang.String> PostGISFeatureStoreTransaction.performInsert(FeatureCollection fc, FeatureStoreTransaction.IDGenMode mode)
           
 int PostGISFeatureStoreTransaction.performUpdate(javax.xml.namespace.QName ftName, java.util.List<Property> replacementProps, Filter filter, Lock lock)
           
 FeatureResultSet PostGISFeatureStore.query(Query query)
           
 FeatureResultSet PostGISFeatureStore.query(Query[] queries)
           
 int PostGISFeatureStore.queryHits(Query query)
           
 int PostGISFeatureStore.queryHits(Query[] queries)
           
 void PostGISFeatureStoreTransaction.rollback()
           
 

Uses of FeatureStoreException in org.deegree.feature.persistence.shape
 

Methods in org.deegree.feature.persistence.shape that throw FeatureStoreException
 FeatureStoreTransaction ShapeFeatureStore.acquireTransaction()
           
 FeatureStore ShapeFeatureStoreProvider.getFeatureStore(java.net.URL configURL)
           
 LockManager ShapeFeatureStore.getLockManager()
           
 GMLObject ShapeFeatureStore.getObjectById(java.lang.String id)
           
 FeatureResultSet ShapeFeatureStore.query(Query query)
           
 FeatureResultSet ShapeFeatureStore.query(Query[] queries)
           
 int ShapeFeatureStore.queryHits(Query query)
           
 int ShapeFeatureStore.queryHits(Query[] queries)
           
 

Uses of FeatureStoreException in org.deegree.feature.persistence.simplesql
 

Methods in org.deegree.feature.persistence.simplesql that throw FeatureStoreException
 FeatureStoreTransaction SimpleSQLFeatureStore.acquireTransaction()
           
 FeatureStore SimpleSQLFeatureStoreProvider.getFeatureStore(java.net.URL configURL)
           
 LockManager SimpleSQLFeatureStore.getLockManager()
           
 GMLObject SimpleSQLFeatureStore.getObjectById(java.lang.String id)
           
 void SimpleSQLFeatureStore.init()
           
 FeatureResultSet SimpleSQLFeatureStore.query(Query query)
           
 FeatureResultSet SimpleSQLFeatureStore.query(Query[] queries)
           
 int SimpleSQLFeatureStore.queryHits(Query query)
           
 int SimpleSQLFeatureStore.queryHits(Query[] queries)
           
 

Uses of FeatureStoreException in org.deegree.rendering.r3d.opengl.rendering.dem.texturing
 

Constructors in org.deegree.rendering.r3d.opengl.rendering.dem.texturing that throw FeatureStoreException
StyledGeometryTTProvider(double[] offsetVector, CRS wpvsCRS, FeatureStore featureStore, Style style, double maxUnitsPerPixel, java.io.File cacheDir, long cacheSize)
          Use the given feature store to create a 'dataset' from a style.
 



Copyright © 2011. All Rights Reserved.