Java Doc for FeatureLocking.java in  » GIS » GeoTools-2.4.1 » org » geotools » data » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.data 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.geotools.data.FeatureLocking

All known Subclasses:   org.geotools.data.AbstractFeatureLocking,  org.geotools.data.postgis.WrappingPostgisFeatureLocking,  org.geotools.data.postgis.PostgisFeatureLocking,  org.geotools.data.jdbc.JDBCFeatureLocking,
FeatureLocking
public interface FeatureLocking extends FeatureStore(Code)
Provides Feature based locking.

Features from individual shapefiles, database tables, etc. can be protected or reserved from modification through this interface.

To use please cast your FeatureSource to this interface.


 FeatureSource source = dataStore.getFeatureSource("roads");
 if( source instanceof FeatureLocking ) {
 FeatureLocking locking = (FeatureLocking) source;
 ...
 }

author:
   Jody Garnett, Refractions Research, Inc.
author:
   Ray Gallagher
author:
   Rob Hranac, TOPP
author:
   Chris Holmes, TOPP
version:
   $Id: FeatureLocking.java 22600 2006-11-04 09:37:58Z jgarnett $

Inner Class :public static class Response



Method Summary
 intlockFeatures(Query query)
     FeatureLock features described by Query.

To implement WFS parcial Locking retrieve your features with a query operation first before trying to lock them individually.

 intlockFeatures(Filter filter)
     FeatureLock features described by Filter.

To implement WFS parcial Locking retrieve your features with a query operation first before trying to lock them individually.

 intlockFeatures()
     FeatureLock all Features.
 voidsetFeatureLock(FeatureLock lock)
     All locking operations will operate against the provided lock.

This in in keeping with the stateful spirit of DataSource in which operations are against the "current" transaction.

 voidunLockFeatures()
     Unlocks all Features.
 voidunLockFeatures(Filter filter)
     Unlock Features denoted by provided filter.
 voidunLockFeatures(Query query)
     Unlock Features denoted by provided query.



Method Detail
lockFeatures
int lockFeatures(Query query) throws IOException(Code)
FeatureLock features described by Query.

To implement WFS parcial Locking retrieve your features with a query operation first before trying to lock them individually. If you are not into WFS please don't ask what parcial locking is.


Parameters:
  query - Query describing the features to lock Number of features locked
throws:
  IOException - Thrown if anything goes wrong



lockFeatures
int lockFeatures(Filter filter) throws IOException(Code)
FeatureLock features described by Filter.

To implement WFS parcial Locking retrieve your features with a query operation first before trying to lock them individually. If you are not into WFS please don't ask what parcial locking is.


Parameters:
  filter - Filter describing the features to lock Number of features locked
throws:
  IOException - Thrown if anything goes wrong



lockFeatures
int lockFeatures() throws IOException(Code)
FeatureLock all Features.

The method does not prevent addFeatures() from being used (we could add a lockDataSource() method if this functionality is required.

Number of Features locked by this opperation
throws:
  IOException -



setFeatureLock
void setFeatureLock(FeatureLock lock)(Code)
All locking operations will operate against the provided lock.

This in in keeping with the stateful spirit of DataSource in which operations are against the "current" transaction. If a FeatureLock is not provided lock operations will only be applicable for the current transaction (they will expire on the next commit or rollback).

That is lockFeatures() operations will:

  • Be recorded against the provided FeatureLock.
  • Be recorded against the current transaction if no FeatureLock is provided.

Calling this method with setFeatureLock( FeatureLock.TRANSACTION ) will revert to per transaction operation.

This design allows for the following:

  • cross DataSource FeatureLock usage
  • not having pass in the same FeatureLock object multiple times

Parameters:
  lock - DOCUMENT ME!



unLockFeatures
void unLockFeatures() throws IOException(Code)
Unlocks all Features.

Authorization must be provided prior before calling this method.


 void releaseLock( String lockId, LockingDataSource ds ){
 ds.setAuthorization( "LOCK534" );
 ds.unLockFeatures();
 }
 

throws:
  IOException -



unLockFeatures
void unLockFeatures(Filter filter) throws IOException(Code)
Unlock Features denoted by provided filter.

Authorization must be provided prior before calling this method.


Parameters:
  filter -
throws:
  IOException -



unLockFeatures
void unLockFeatures(Query query) throws IOException(Code)
Unlock Features denoted by provided query.

Authorization must be provided prior before calling this method.


Parameters:
  query - Specifies fatures to unlock
throws:
  IOException -



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.