Java Doc for LockFeatureType.java in  » GIS » GeoServer » net » opengis » wfs » 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 » GeoServer » net.opengis.wfs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.opengis.wfs.LockFeatureType

All known Subclasses:   net.opengis.wfs.impl.LockFeatureTypeImpl,
LockFeatureType
public interface LockFeatureType extends BaseRequestType(Code)
A representation of the model object 'Lock Feature Type'. This type defines the LockFeature operation. The LockFeature element contains one or more Lock elements that define which features of a particular type should be locked. A lock identifier (lockId) is returned to the client application which can be used by subsequent operations to reference the locked features.

The following features are supported:


See Also:   net.opengis.wfs.WfsPackage.getLockFeatureType




Method Summary
 BigIntegergetExpiry()
     Returns the value of the 'Expiry' attribute. The default value is "5". The expiry attribute is used to set the length of time (expressed in minutes) that features will remain locked as a result of a LockFeature request.
 EListgetLock()
     Returns the value of the 'Lock' containment reference list.
 AllSomeTypegetLockAction()
     Returns the value of the 'Lock Action' attribute. The default value is "ALL". The literals are from the enumeration net.opengis.wfs.AllSomeType . The lockAction attribute is used to indicate what a Web Feature Service should do when it encounters a feature instance that has already been locked by another client application. Valid values are ALL or SOME. ALL means that the Web Feature Service must acquire locks on all the requested feature instances.
 booleanisSetExpiry()
     Returns whether the value of the ' net.opengis.wfs.LockFeatureType.getExpiry Expiry ' attribute is set.
 booleanisSetLockAction()
     Returns whether the value of the ' net.opengis.wfs.LockFeatureType.getLockAction Lock Action ' attribute is set.
 voidsetExpiry(BigInteger value)
     Sets the value of the ' net.opengis.wfs.LockFeatureType.getExpiry Expiry ' attribute.
 voidsetLockAction(AllSomeType value)
     Sets the value of the ' net.opengis.wfs.LockFeatureType.getLockAction Lock Action ' attribute.
 voidunsetExpiry()
     Unsets the value of the ' net.opengis.wfs.LockFeatureType.getExpiry Expiry ' attribute.
 voidunsetLockAction()
     Unsets the value of the ' net.opengis.wfs.LockFeatureType.getLockAction Lock Action ' attribute.



Method Detail
getExpiry
BigInteger getExpiry()(Code)
Returns the value of the 'Expiry' attribute. The default value is "5". The expiry attribute is used to set the length of time (expressed in minutes) that features will remain locked as a result of a LockFeature request. After the expiry period elapses, the locked resources must be released. If the expiry attribute is not set, then the default value of 5 minutes will be enforced. the value of the 'Expiry' attribute.
See Also:   LockFeatureType.isSetExpiry()
See Also:   LockFeatureType.unsetExpiry()
See Also:   LockFeatureType.setExpiry(BigInteger)
See Also:   net.opengis.wfs.WfsPackage.getLockFeatureType_Expiry



getLock
EList getLock()(Code)
Returns the value of the 'Lock' containment reference list. The list contents are of type net.opengis.wfs.LockType . The lock element is used to indicate which feature instances of particular type are to be locked. the value of the 'Lock' containment reference list.
See Also:   net.opengis.wfs.WfsPackage.getLockFeatureType_Lock



getLockAction
AllSomeType getLockAction()(Code)
Returns the value of the 'Lock Action' attribute. The default value is "ALL". The literals are from the enumeration net.opengis.wfs.AllSomeType . The lockAction attribute is used to indicate what a Web Feature Service should do when it encounters a feature instance that has already been locked by another client application. Valid values are ALL or SOME. ALL means that the Web Feature Service must acquire locks on all the requested feature instances. If it cannot acquire those locks then the request should fail. In this instance, all locks acquired by the operation should be released. SOME means that the Web Feature Service should lock as many of the requested features as it can. the value of the 'Lock Action' attribute.
See Also:   net.opengis.wfs.AllSomeType
See Also:   LockFeatureType.isSetLockAction()
See Also:   LockFeatureType.unsetLockAction()
See Also:   LockFeatureType.setLockAction(AllSomeType)
See Also:   net.opengis.wfs.WfsPackage.getLockFeatureType_LockAction



isSetExpiry
boolean isSetExpiry()(Code)
Returns whether the value of the ' net.opengis.wfs.LockFeatureType.getExpiry Expiry ' attribute is set. whether the value of the 'Expiry' attribute is set.
See Also:   LockFeatureType.unsetExpiry()
See Also:   LockFeatureType.getExpiry()
See Also:   LockFeatureType.setExpiry(BigInteger)



isSetLockAction
boolean isSetLockAction()(Code)
Returns whether the value of the ' net.opengis.wfs.LockFeatureType.getLockAction Lock Action ' attribute is set. whether the value of the 'Lock Action' attribute is set.
See Also:   LockFeatureType.unsetLockAction()
See Also:   LockFeatureType.getLockAction()
See Also:   LockFeatureType.setLockAction(AllSomeType)



setExpiry
void setExpiry(BigInteger value)(Code)
Sets the value of the ' net.opengis.wfs.LockFeatureType.getExpiry Expiry ' attribute.
Parameters:
  value - the new value of the 'Expiry' attribute.
See Also:   LockFeatureType.isSetExpiry()
See Also:   LockFeatureType.unsetExpiry()
See Also:   LockFeatureType.getExpiry()



setLockAction
void setLockAction(AllSomeType value)(Code)
Sets the value of the ' net.opengis.wfs.LockFeatureType.getLockAction Lock Action ' attribute.
Parameters:
  value - the new value of the 'Lock Action' attribute.
See Also:   net.opengis.wfs.AllSomeType
See Also:   LockFeatureType.isSetLockAction()
See Also:   LockFeatureType.unsetLockAction()
See Also:   LockFeatureType.getLockAction()



unsetExpiry
void unsetExpiry()(Code)
Unsets the value of the ' net.opengis.wfs.LockFeatureType.getExpiry Expiry ' attribute.
See Also:   LockFeatureType.isSetExpiry()
See Also:   LockFeatureType.getExpiry()
See Also:   LockFeatureType.setExpiry(BigInteger)



unsetLockAction
void unsetLockAction()(Code)
Unsets the value of the ' net.opengis.wfs.LockFeatureType.getLockAction Lock Action ' attribute.
See Also:   LockFeatureType.isSetLockAction()
See Also:   LockFeatureType.getLockAction()
See Also:   LockFeatureType.setLockAction(AllSomeType)



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