Java Doc for WFSDataStore.java in  » GIS » GeoTools-2.4.1 » org » geotools » data » 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 » GeoTools 2.4.1 » org.geotools.data.wfs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geotools.data.AbstractDataStore
      org.geotools.data.wfs.WFSDataStore

WFSDataStore
public class WFSDataStore extends AbstractDataStore (Code)

DOCUMENT ME!


author:
   dzwiers


Field Summary
final protected static  intAUTO_PROTOCOL
    
final protected static  intGET_PROTOCOL
    
final protected static  intPOST_PROTOCOL
    
protected  Authenticatorauth
    
protected  WFSCapabilitiescapabilities
    
protected  Stringencoding
    
protected  intprotocol
    
protected  WFSStrategystrategy
    

Constructor Summary
protected  WFSDataStore(URL host, Boolean protocol, String username, String password, int timeout, int buffer, boolean tryGZIP, boolean lenient, String encoding)
    
protected  WFSDataStore(URL host, Boolean protocol, String username, String password, int timeout, int buffer, boolean tryGZIP)
     Construct WFSDataStore.
protected  WFSDataStore(URL host, Boolean protocol, String username, String password, int timeout, int buffer, boolean tryGZIP, boolean lenient)
     Construct WFSDataStore.
Parameters:
  host - - may not yet be a capabilities url
Parameters:
  protocol - - true,false,null (post,get,auto)
Parameters:
  username - - iff password
Parameters:
  password - - iff username
Parameters:
  timeout - - default 3000 (ms)
Parameters:
  buffer - - default 10 (features)
Parameters:
  tryGZIP - - indicates to use GZIP if server supports it.
Parameters:
  lenient - - if true the parsing will be very forgiving to bad data.

Method Summary
public synchronized  voidaddFidMapping(String original, String finalFid)
     Adds a new fid mapping to the fid map.
protected static  URLcreateGetCapabilitiesRequest(URL host)
    
protected  EnvelopegetBounds(Query query)
    
protected  HttpURLConnectiongetConnection(URL url, Authenticator auth, boolean isPost)
    
protected  FeatureReadergetFeatureReader(String typeName)
    
protected  FeatureReadergetFeatureReader(String typeName, Query query)
    
public  FeatureReadergetFeatureReader(Query query, Transaction transaction)
    
protected  FeatureReadergetFeatureReaderGet(Query request, Transaction transaction)
    
protected  FeatureReadergetFeatureReaderPost(Query query, Transaction transaction)
    
public  FeatureSourcegetFeatureSource(String typeName)
    
 InputStreamgetInputStream(HttpURLConnection hc)
     If the field useGZIP is true Adds gzip to the connection accept-encoding property and creates a gzip inputstream (if server supports it).
 WritergetOutputStream(HttpURLConnection hc)
    
public  FeatureTypegetSchema(String typeName)
    
protected  FeatureTypegetSchemaGet(String typeName)
    
protected  FeatureTypegetSchemaPost(String typeName)
    
public  String[]getTypeNames()
    
protected  FiltergetUnsupportedFilter(String typeName, Filter filter)
    
static  FeatureTypeparseDescribeFeatureTypeResponse(String typeName, Schema schema)
    
public  FilterprocessFilter(Filter filter)
     Runs FidFilterVisitor on the filter and returns the result as long as transaction is not AUTO_COMMIT or null.
Parameters:
  filter - filter to process.
protected  Filter[]splitFilters(Query q, Transaction t)
    

Field Detail
AUTO_PROTOCOL
final protected static int AUTO_PROTOCOL(Code)



GET_PROTOCOL
final protected static int GET_PROTOCOL(Code)



POST_PROTOCOL
final protected static int POST_PROTOCOL(Code)



auth
protected Authenticator auth(Code)



capabilities
protected WFSCapabilities capabilities(Code)



encoding
protected String encoding(Code)



protocol
protected int protocol(Code)



strategy
protected WFSStrategy strategy(Code)




Constructor Detail
WFSDataStore
protected WFSDataStore(URL host, Boolean protocol, String username, String password, int timeout, int buffer, boolean tryGZIP, boolean lenient, String encoding) throws SAXException, IOException(Code)



WFSDataStore
protected WFSDataStore(URL host, Boolean protocol, String username, String password, int timeout, int buffer, boolean tryGZIP) throws SAXException, IOException(Code)
Construct WFSDataStore.
Parameters:
  host - - may not yet be a capabilities url
Parameters:
  protocol - - true,false,null (post,get,auto)
Parameters:
  username - - iff password
Parameters:
  password - - iff username
Parameters:
  timeout - - default 3000 (ms)
Parameters:
  buffer - - default 10 (features)
Parameters:
  tryGZIP - - indicates to use GZIP if server supports it.
throws:
  SAXException -
throws:
  IOException -



WFSDataStore
protected WFSDataStore(URL host, Boolean protocol, String username, String password, int timeout, int buffer, boolean tryGZIP, boolean lenient) throws SAXException, IOException(Code)
Construct WFSDataStore.
Parameters:
  host - - may not yet be a capabilities url
Parameters:
  protocol - - true,false,null (post,get,auto)
Parameters:
  username - - iff password
Parameters:
  password - - iff username
Parameters:
  timeout - - default 3000 (ms)
Parameters:
  buffer - - default 10 (features)
Parameters:
  tryGZIP - - indicates to use GZIP if server supports it.
Parameters:
  lenient - - if true the parsing will be very forgiving to bad data. Errors will be logged rather than exceptions.
throws:
  SAXException -
throws:
  IOException -




Method Detail
addFidMapping
public synchronized void addFidMapping(String original, String finalFid)(Code)
Adds a new fid mapping to the fid map.
Parameters:
  original - the before fid
Parameters:
  finalFid - the final fid;



createGetCapabilitiesRequest
protected static URL createGetCapabilitiesRequest(URL host)(Code)



getBounds
protected Envelope getBounds(Query query) throws IOException(Code)



getConnection
protected HttpURLConnection getConnection(URL url, Authenticator auth, boolean isPost) throws IOException(Code)



getFeatureReader
protected FeatureReader getFeatureReader(String typeName) throws IOException(Code)



getFeatureReader
protected FeatureReader getFeatureReader(String typeName, Query query) throws IOException(Code)



getFeatureReader
public FeatureReader getFeatureReader(Query query, Transaction transaction) throws IOException(Code)

See Also:   org.geotools.data.DataStore.getFeatureReader(org.geotools.data.Queryorg.geotools.data.Transaction)



getFeatureReaderGet
protected FeatureReader getFeatureReaderGet(Query request, Transaction transaction) throws UnsupportedEncodingException, IOException, SAXException(Code)



getFeatureReaderPost
protected FeatureReader getFeatureReaderPost(Query query, Transaction transaction) throws SAXException, IOException(Code)



getFeatureSource
public FeatureSource getFeatureSource(String typeName) throws IOException(Code)

See Also:   org.geotools.data.DataStore.getFeatureSource(java.lang.String)



getInputStream
InputStream getInputStream(HttpURLConnection hc) throws IOException(Code)
If the field useGZIP is true Adds gzip to the connection accept-encoding property and creates a gzip inputstream (if server supports it). Otherwise returns a normal buffered input stream.
Parameters:
  hc - the connection to use to create the stream an input steam from the provided connection



getOutputStream
Writer getOutputStream(HttpURLConnection hc) throws IOException(Code)



getSchema
public FeatureType getSchema(String typeName) throws IOException(Code)
DOCUMENT ME!
Parameters:
  typeName - DOCUMENT ME! DOCUMENT ME!
throws:
  IOException -
See Also:   org.geotools.data.AbstractDataStore.getSchema(java.lang.String)



getSchemaGet
protected FeatureType getSchemaGet(String typeName) throws SAXException, IOException(Code)



getSchemaPost
protected FeatureType getSchemaPost(String typeName) throws IOException, SAXException(Code)



getTypeNames
public String[] getTypeNames()(Code)

See Also:   org.geotools.data.AbstractDataStore.getTypeNames



getUnsupportedFilter
protected Filter getUnsupportedFilter(String typeName, Filter filter)(Code)

See Also:   org.geotools.data.AbstractDataStore.getUnsupportedFilter(java.lang.Stringorg.geotools.filter.Filter)



parseDescribeFeatureTypeResponse
static FeatureType parseDescribeFeatureTypeResponse(String typeName, Schema schema) throws SAXException(Code)



processFilter
public Filter processFilter(Filter filter)(Code)
Runs FidFilterVisitor on the filter and returns the result as long as transaction is not AUTO_COMMIT or null.
Parameters:
  filter - filter to process. Runs FidFilterVisitor on the filter and returns the result as long as transaction is not AUTO_COMMIT or null.



splitFilters
protected Filter[] splitFilters(Query q, Transaction t) throws IOException(Code)



Fields inherited from org.geotools.data.AbstractDataStore
final protected static Logger LOGGER(Code)(Java Doc)
final protected boolean isWriteable(Code)(Java Doc)
public FeatureListenerManager listenerManager(Code)(Java Doc)

Methods inherited from org.geotools.data.AbstractDataStore
protected FeatureWriter createFeatureWriter(String typeName, Transaction transaction) throws IOException(Code)(Java Doc)
protected InProcessLockingManager createLockingManager()(Code)(Java Doc)
protected Map createMetadata(String typeName)(Code)(Java Doc)
public void createSchema(FeatureType featureType) throws IOException(Code)(Java Doc)
public void dispose()(Code)(Java Doc)
protected Envelope getBounds(Query query) throws IOException(Code)(Java Doc)
protected int getCount(Query query) throws IOException(Code)(Java Doc)
abstract protected FeatureReader getFeatureReader(String typeName) throws IOException(Code)(Java Doc)
public FeatureReader getFeatureReader(Query query, Transaction transaction) throws IOException(Code)(Java Doc)
protected FeatureReader getFeatureReader(String typeName, Query query) throws IOException(Code)(Java Doc)
public FeatureSource getFeatureSource(String typeName) throws IOException(Code)(Java Doc)
protected FeatureWriter getFeatureWriter(String typeName) throws IOException(Code)(Java Doc)
public FeatureWriter getFeatureWriter(String typeName, Filter filter, Transaction transaction) throws IOException(Code)(Java Doc)
public FeatureWriter getFeatureWriter(String typeName, Transaction transaction) throws IOException(Code)(Java Doc)
public FeatureWriter getFeatureWriterAppend(String typeName, Transaction transaction) throws IOException(Code)(Java Doc)
public LockingManager getLockingManager()(Code)(Java Doc)
abstract public FeatureType getSchema(String typeName) throws IOException(Code)(Java Doc)
protected Set getSupportedHints()(Code)(Java Doc)
abstract public String[] getTypeNames() throws IOException(Code)(Java Doc)
protected Filter getUnsupportedFilter(String typeName, Filter filter)(Code)(Java Doc)
public FeatureSource getView(Query query) throws IOException, SchemaException(Code)(Java Doc)
public void updateSchema(String typeName, FeatureType featureType)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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