Java Doc for InsertElementTypeBinding.java in  » GIS » GeoServer » org » geoserver » wfs » xml » v1_1_0 » 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 » org.geoserver.wfs.xml.v1_1_0 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.geoserver.wfs.xml.v1_1_0.InsertElementTypeBinding

InsertElementTypeBinding
public class InsertElementTypeBinding extends AbstractComplexEMFBinding (Code)
Binding object for the type http://www.opengis.net/wfs:InsertElementType.

 
 <xsd:complexType name="InsertElementType">
 <xsd:annotation>
 <xsd:documentation>
 An Insert element may contain a feature collection or one
 or more feature instances to be inserted into the
 repository.
 </xsd:documentation>
 </xsd:annotation>
 <xsd:choice>
 <xsd:element ref="gml:_FeatureCollection"/>
 <xsd:sequence>
 <xsd:element maxOccurs="unbounded" ref="gml:_Feature"/>
 </xsd:sequence>
 </xsd:choice>
 <xsd:attribute default="GenerateNew" name="idgen"
 type="wfs:IdentifierGenerationOptionType" use="optional">
 <xsd:annotation>
 <xsd:documentation>
 The idgen attribute control how a WFS generates identifiers
 from newly created feature instances using the Insert action.
 The default action is to have the WFS generate a new id for
 the features.  This is also backward compatible with WFS 1.0
 where the only action was for the WFS to generate an new id.
 </xsd:documentation>
 </xsd:annotation>
 </xsd:attribute>
 <xsd:attribute name="handle" type="xsd:string" use="optional">
 <xsd:annotation>
 <xsd:documentation>
 The handle attribute allows a client application
 to assign a client-generated request identifier
 to an Insert action.  The handle is included to
 facilitate error reporting.  If an Insert action
 in a Transaction request fails, then a WFS may
 include the handle in an exception report to localize
 the error.  If no handle is included of the offending
 Insert element then a WFS may employee other means of
 localizing the error (e.g. line number).
 </xsd:documentation>
 </xsd:annotation>
 </xsd:attribute>
 <xsd:attribute default="text/xml; subtype=gml/3.1.1"
 name="inputFormat" type="xsd:string" use="optional">
 <xsd:annotation>
 <xsd:documentation>
 This inputFormat attribute is used to indicate
 the format used to encode a feature instance in
 an Insert element.  The default value of
 'text/xml; subtype=gml/3.1.1' is used to indicate
 that feature encoding is GML3.  Another example
 might be 'text/xml; subtype=gml/2.1.2' indicating
 that the feature us encoded in GML2.  A WFS must
 declare in the capabilities document, using a
 Parameter element, which version of GML it supports.
 </xsd:documentation>
 </xsd:annotation>
 </xsd:attribute>
 <xsd:attribute name="srsName" type="xsd:anyURI" use="optional">
 <xsd:annotation>
 <xsd:documentation>
 The optional srsName attribute is used to assert the SRS of the
 incoming feature data, which can be useful if the incoming feature
 data does not have an SRS declared for each geometry. If the
 srsName attribute exists on an <Insert> element, its value shall
 be equivalent to the value of <DefaultSRS> or any of the
 <OtherSRS> of the relevant feature types. If, however, the SRS is
 not supported, the WFS shall raise an exception as described in
 subclause 7.7. If the srsName is not specified on the <Insert>
 element, the WFS shall interpret this to mean that the feature
 data is given in the <DefaultSRS> list, except where an SRS is
 specified on the feature geometry. In this case, if the SRS for
 such a geometry is one of the <DefaultSRS> or <OtherSR> values
 for the respective feature types, it will be transformed as
 required before insertion. However, if the aforesaid SRS is not
 supported for the respective feature type, the entire transaction
 shall fail and the WFS shall raise an exception as described in
 subclause 7.7. If atomic transactions are not supported by the
 underlying DBMS, the WFS shall skip any feature with an
 unsupported SRS and continue
 </xsd:documentation>
 </xsd:annotation>
 </xsd:attribute>
 </xsd:complexType>
 
 



Field Summary
 WfsFactorywfsfactory
    

Constructor Summary
public  InsertElementTypeBinding(WfsFactory wfsfactory)
    

Method Summary
public  ObjectgetProperty(Object object, QName name)
    
public  QNamegetTarget()
    
public  ClassgetType()
    
public  voidinitializeChildContext(ElementInstance childInstance, Node node, MutablePicoContainer context)
    
public  Objectparse(ElementInstance instance, Node node, Object value)
    

Field Detail
wfsfactory
WfsFactory wfsfactory(Code)




Constructor Detail
InsertElementTypeBinding
public InsertElementTypeBinding(WfsFactory wfsfactory)(Code)




Method Detail
getProperty
public Object getProperty(Object object, QName name) throws Exception(Code)



getTarget
public QName getTarget()(Code)



getType
public Class getType()(Code)



initializeChildContext
public void initializeChildContext(ElementInstance childInstance, Node node, MutablePicoContainer context)(Code)



parse
public Object parse(ElementInstance instance, Node node, Object value) throws Exception(Code)



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