Java Doc for ConnectionFactoryAbstractImpl.java in  » Database-ORM » db-ojb » org » apache » ojb » broker » accesslayer » 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 » Database ORM » db ojb » org.apache.ojb.broker.accesslayer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.ojb.broker.accesslayer.ConnectionFactoryAbstractImpl

All known Subclasses:   org.apache.ojb.broker.accesslayer.ConnectionFactoryPooledImpl,  org.apache.ojb.broker.accesslayer.ConnectionFactoryNotPooledImpl,  org.apache.ojb.broker.accesslayer.ConnectionFactoryDBCPImpl,
ConnectionFactoryAbstractImpl
abstract public class ConnectionFactoryAbstractImpl implements ConnectionFactory(Code)
Abstract base class to simplify implementation of ConnectionFactory 's.
author:
   Armin Waibel
version:
   $Id: ConnectionFactoryAbstractImpl.java,v 1.10.2.5 2005/04/30 20:55:15 mkalen Exp $




Method Summary
abstract public  ConnectioncheckOutJdbcConnection(JdbcConnectionDescriptor jcd)
     Returns a valid JDBC Connection.
protected  StringgetDbURL(JdbcConnectionDescriptor jcd)
    
protected  StringgetJcdDescription(JdbcConnectionDescriptor jcd)
    
protected  PropertiesgetJdbcProperties(JdbcConnectionDescriptor jcd, String user, String password)
     Returns connection properties for passing to DriverManager, after merging JDBC driver-specific configuration settings with name/password from connection descriptor.
protected  PropertiesgetJdbcProperties(JdbcConnectionDescriptor jcd)
    
protected  voidinitializeJdbcConnection(Connection con, JdbcConnectionDescriptor jcd)
     Initialize the connection with the specified properties in OJB configuration files and platform depended properties.
public  ConnectionlookupConnection(JdbcConnectionDescriptor jcd)
    
protected  ConnectionnewConnectionFromDataSource(JdbcConnectionDescriptor jcd)
     Creates a new connection from the data source that the connection descriptor represents.
protected  ConnectionnewConnectionFromDriverManager(JdbcConnectionDescriptor jcd)
    
public synchronized  voidreleaseAllResources()
     Override this method to do cleanup in your implementation.
public  voidreleaseConnection(JdbcConnectionDescriptor jcd, Connection con)
    
abstract public  voidreleaseJdbcConnection(JdbcConnectionDescriptor jcd, Connection con)
     Releases a Connection after use.



Method Detail
checkOutJdbcConnection
abstract public Connection checkOutJdbcConnection(JdbcConnectionDescriptor jcd) throws LookupException(Code)
Returns a valid JDBC Connection. Implement this method in concrete subclasses. Concrete implementations using Connection pooling are responsible for any validation and pool removal management.

Note: This method is never called for a jdbc-connection-descriptor that uses datasources, OJB only manages connections from DriverManager.

Note: If the concrete implementation does not callback to ConnectionFactoryAbstractImpl.newConnectionFromDriverManager(org.apache.ojb.broker.metadata.JdbcConnectionDescriptor) when creating a new Connection, it must call ConnectionFactoryAbstractImpl.initializeJdbcConnection(java.sql.Connection,org.apache.ojb.broker.metadata.JdbcConnectionDescriptor) so that the platform implementation can peform any RDBMS-specific init tasks for newly created Connection objetcs.
Parameters:
  jcd - the connection descriptor for which to return a validated Connection a valid Connection, never null.Specific implementations must guarantee that the connection is not null andthat it is valid.
throws:
  LookupException - if a valid Connection could not be obtained




getDbURL
protected String getDbURL(JdbcConnectionDescriptor jcd)(Code)



getJcdDescription
protected String getJcdDescription(JdbcConnectionDescriptor jcd)(Code)



getJdbcProperties
protected Properties getJdbcProperties(JdbcConnectionDescriptor jcd, String user, String password)(Code)
Returns connection properties for passing to DriverManager, after merging JDBC driver-specific configuration settings with name/password from connection descriptor.
Parameters:
  jcd - the connection descriptor with driver-specific settings
Parameters:
  user - the jcd username (or null if not using authenticated login)
Parameters:
  password - the jcd password (only used when user != null) merged properties object to pass to DriverManager



getJdbcProperties
protected Properties getJdbcProperties(JdbcConnectionDescriptor jcd)(Code)



initializeJdbcConnection
protected void initializeJdbcConnection(Connection con, JdbcConnectionDescriptor jcd) throws LookupException(Code)
Initialize the connection with the specified properties in OJB configuration files and platform depended properties. Invoke this method after a NEW connection is created, not if re-using from pool.
See Also:   org.apache.ojb.broker.platforms.PlatformFactory
See Also:   org.apache.ojb.broker.platforms.Platform



lookupConnection
public Connection lookupConnection(JdbcConnectionDescriptor jcd) throws LookupException(Code)



newConnectionFromDataSource
protected Connection newConnectionFromDataSource(JdbcConnectionDescriptor jcd) throws LookupException(Code)
Creates a new connection from the data source that the connection descriptor represents. If the connection descriptor does not directly contain the data source then a JNDI lookup is performed to retrieve the data source.
Parameters:
  jcd - The connection descriptor A connection instance
throws:
  LookupException - if we can't get a connection from the datasource either due to anaming exception, a failed sanity check, or a SQLException.



newConnectionFromDriverManager
protected Connection newConnectionFromDriverManager(JdbcConnectionDescriptor jcd) throws LookupException(Code)
Returns a new created connection
Parameters:
  jcd - the connection descriptor an instance of Connection from the drivermanager



releaseAllResources
public synchronized void releaseAllResources()(Code)
Override this method to do cleanup in your implementation. Do a super.releaseAllResources() in your method implementation to free resources used by this class.



releaseConnection
public void releaseConnection(JdbcConnectionDescriptor jcd, Connection con)(Code)



releaseJdbcConnection
abstract public void releaseJdbcConnection(JdbcConnectionDescriptor jcd, Connection con) throws LookupException(Code)
Releases a Connection after use. Implement this method in concrete subclasses. Concrete implementations using Connection pooling are responsible for any validation and pool removal management.

Note: This method is never called for a jdbc-connection-descriptor that uses datasources, OJB only manages connections from DriverManager.
Parameters:
  jcd - the connection descriptor for which the connection was created
Parameters:
  con - the connection to release.Callers must guarantee that the passed connection was obtained by callingConnectionFactoryAbstractImpl.checkOutJdbcConnection(org.apache.ojb.broker.metadata.JdbcConnectionDescriptor).
throws:
  LookupException - if errors occured during release of object. Typically happensif return of object to pool fails in a pooled implementation.




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.