RESOLVED - SPR-5523: Replace all 'package.html' artifacts with 'package-info.java'

* Applied patch submitted by Carlos Zuniga
This commit is contained in:
Chris Beams
2009-06-01 04:14:22 +00:00
parent f3e6242568
commit a9696c7282
499 changed files with 2627 additions and 2420 deletions

View File

@@ -0,0 +1,8 @@
/**
*
* Context metadata abstraction for the configuration and execution of a stored procedure call.
*
*/
package org.springframework.jdbc.core.metadata;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Context metadata abstraction for the configuration and execution of a stored procedure call.
</body>
</html>

View File

@@ -0,0 +1,17 @@
/**
*
* JdbcTemplate variant with named parameter support.
*
* <p>NamedParameterJdbcTemplate is a wrapper around JdbcTemplate that adds
* support for named parameter parsing. It does not implement the JdbcOperations
* interface or extend JdbcTemplate, but implements the dedicated
* NamedParameterJdbcOperations interface.
*
* <P>If you need the full power of Spring JDBC for less common operations, use
* the <code>getJdbcOperations()</code> method of NamedParameterJdbcTemplate and
* work with the returned classic template, or use a JdbcTemplate instance directly.
*
*/
package org.springframework.jdbc.core.namedparam;

View File

@@ -1,16 +0,0 @@
<html>
<body>
JdbcTemplate variant with named parameter support.
<p>NamedParameterJdbcTemplate is a wrapper around JdbcTemplate that adds
support for named parameter parsing. It does not implement the JdbcOperations
interface or extend JdbcTemplate, but implements the dedicated
NamedParameterJdbcOperations interface.
<P>If you need the full power of Spring JDBC for less common operations, use
the <code>getJdbcOperations()</code> method of NamedParameterJdbcTemplate and
work with the returned classic template, or use a JdbcTemplate instance directly.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Provides the core JDBC framework, based on JdbcTemplate
* and its associated callback interfaces and helper objects.
*
*/
package org.springframework.jdbc.core;

View File

@@ -1,8 +0,0 @@
<html>
<body>
Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
</body>
</html>

View File

@@ -0,0 +1,18 @@
/**
*
* Simplification layer over JdbcTemplate for Java 5 and above.
*
* <p>SimpleJdbcTemplate is a wrapper around JdbcTemplate that takes advantage
* of varargs and autoboxing. It also offers only a subset of the methods
* available on JdbcTemplate: Hence, it does not implement the JdbcOperations
* interface or extend JdbcTemplate, but implements the dedicated
* SimpleJdbcOperations interface.
*
* <P>If you need the full power of Spring JDBC for less common operations,
* use the <code>getJdbcOperations()</code> method of SimpleJdbcTemplate and work
* with the returned classic template, or use a JdbcTemplate instance directly.
*
*/
package org.springframework.jdbc.core.simple;

View File

@@ -1,17 +0,0 @@
<html>
<body>
Simplification layer over JdbcTemplate for Java 5 and above.
<p>SimpleJdbcTemplate is a wrapper around JdbcTemplate that takes advantage
of varargs and autoboxing. It also offers only a subset of the methods
available on JdbcTemplate: Hence, it does not implement the JdbcOperations
interface or extend JdbcTemplate, but implements the dedicated
SimpleJdbcOperations interface.
<P>If you need the full power of Spring JDBC for less common operations,
use the <code>getJdbcOperations()</code> method of SimpleJdbcTemplate and work
with the returned classic template, or use a JdbcTemplate instance directly.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Classes supporting the <code>org.springframework.jdbc.core</code> package.
* Contains a DAO base class for JdbcTemplate usage.
*
*/
package org.springframework.jdbc.core.support;

View File

@@ -1,8 +0,0 @@
<html>
<body>
Classes supporting the <code>org.springframework.jdbc.core</code> package.
Contains a DAO base class for JdbcTemplate usage.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Provides extensible support for creating embedded database instances.
* HSQL in-memory support provided natively
*
*/
package org.springframework.jdbc.datasource.embedded;

View File

@@ -1,6 +0,0 @@
<html>
<body>
Provides extensible support for creating embedded database instances.
HSQL in-memory support provided natively.
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* Provides a strategy for looking up JDBC DataSources by name.
*
*/
package org.springframework.jdbc.datasource.lookup;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Provides a strategy for looking up JDBC DataSources by name.
</body>
</html>

View File

@@ -0,0 +1,10 @@
/**
*
* Provides a utility class for easy DataSource access,
* a PlatformTransactionManager for a single DataSource,
* and various simple DataSource implementations.
*
*/
package org.springframework.jdbc.datasource;

View File

@@ -1,9 +0,0 @@
<html>
<body>
Provides a utility class for easy DataSource access,
a PlatformTransactionManager for a single DataSource,
and various simple DataSource implementations.
</body>
</html>

View File

@@ -0,0 +1,21 @@
/**
*
* The classes in this package represent RDBMS queries, updates,
* and stored procedures as threadsafe, reusable objects. This approach
* is modelled by JDO, although of course objects returned by queries
* are "disconnected" from the database.
*
* <p>This higher level of JDBC abstraction depends on the lower-level
* abstraction in the <code>org.springframework.jdbc.core</code> package.
* Exceptions thrown are as in the <code>org.springframework.dao</code> package,
* meaning that code using this package does not need to implement JDBC or
* RDBMS-specific error handling.
*
* <p>This package and related packages are discussed in Chapter 9 of
* <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
* by Rod Johnson (Wrox, 2002).
*
*/
package org.springframework.jdbc.object;

View File

@@ -1,20 +0,0 @@
<html>
<body>
The classes in this package represent RDBMS queries, updates,
and stored procedures as threadsafe, reusable objects. This approach
is modelled by JDO, although of course objects returned by queries
are "disconnected" from the database.
<p>This higher level of JDBC abstraction depends on the lower-level
abstraction in the <code>org.springframework.jdbc.core</code> package.
Exceptions thrown are as in the <code>org.springframework.dao</code> package,
meaning that code using this package does not need to implement JDBC or
RDBMS-specific error handling.
<p>This package and related packages are discussed in Chapter 9 of
<a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
by Rod Johnson (Wrox, 2002).
</body>
</html>

View File

@@ -0,0 +1,24 @@
/**
*
* The classes in this package make JDBC easier to use and
* reduce the likelihood of common errors. In particular, they:
* <ul>
* <li>Simplify error handling, avoiding the need for try/catch/final
* blocks in application code.
* <li>Present exceptions to application code in a generic hierarchy of
* unchecked exceptions, enabling applications to catch data access
* exceptions without being dependent on JDBC, and to ignore fatal
* exceptions there is no value in catching.
* <li>Allow the implementation of error handling to be modified
* to target different RDBMSes without introducing proprietary
* dependencies into application code.
* </ul>
*
* <p>This package and related packages are discussed in Chapter 9 of
* <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
* by Rod Johnson (Wrox, 2002).
*
*/
package org.springframework.jdbc;

View File

@@ -1,23 +0,0 @@
<html>
<body>
The classes in this package make JDBC easier to use and
reduce the likelihood of common errors. In particular, they:
<ul>
<li>Simplify error handling, avoiding the need for try/catch/final
blocks in application code.
<li>Present exceptions to application code in a generic hierarchy of
unchecked exceptions, enabling applications to catch data access
exceptions without being dependent on JDBC, and to ignore fatal
exceptions there is no value in catching.
<li>Allow the implementation of error handling to be modified
to target different RDBMSes without introducing proprietary
dependencies into application code.
</ul>
<p>This package and related packages are discussed in Chapter 9 of
<a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
by Rod Johnson (Wrox, 2002).
</body>
</html>

View File

@@ -0,0 +1,11 @@
/**
*
* Provides a support framework for incrementing database table values
* via sequences, with implementations for various databases.
*
* <p>Can be used independently, for example in custom JDBC access code.
*
*/
package org.springframework.jdbc.support.incrementer;

View File

@@ -1,10 +0,0 @@
<html>
<body>
Provides a support framework for incrementing database table values
via sequences, with implementations for various databases.
<p>Can be used independently, for example in custom JDBC access code.
</body>
</html>

View File

@@ -0,0 +1,12 @@
/**
*
* Provides a stategy interface for Large OBject handling,
* with implementations for various databases.
*
* <p>Can be used independently from jdbc.core and jdbc.object,
* for example in custom JDBC access code.
*
*/
package org.springframework.jdbc.support.lob;

View File

@@ -1,11 +0,0 @@
<html>
<body>
Provides a stategy interface for Large OBject handling,
with implementations for various databases.
<p>Can be used independently from jdbc.core and jdbc.object,
for example in custom JDBC access code.
</body>
</html>

View File

@@ -0,0 +1,11 @@
/**
*
* Provides a mechanism for extracting native implementations of JDBC
* interfaces from wrapper objects that got returned from connection pools.
*
* <p>Can be used independently, for example in custom JDBC access code.
*
*/
package org.springframework.jdbc.support.nativejdbc;

View File

@@ -1,10 +0,0 @@
<html>
<body>
Provides a mechanism for extracting native implementations of JDBC
interfaces from wrapper objects that got returned from connection pools.
<p>Can be used independently, for example in custom JDBC access code.
</body>
</html>

View File

@@ -0,0 +1,13 @@
/**
*
* Support classes for the JDBC framework, used by the classes in the
* jdbc.core and jdbc.object packages. Provides a translator from
* SQLExceptions Spring's generic DataAccessExceptions.
*
* <p>Can be used independently, for example in custom JDBC access code,
* or in JDBC-based O/R mapping layers.
*
*/
package org.springframework.jdbc.support;

View File

@@ -1,12 +0,0 @@
<html>
<body>
Support classes for the JDBC framework, used by the classes in the
jdbc.core and jdbc.object packages. Provides a translator from
SQLExceptions Spring's generic DataAccessExceptions.
<p>Can be used independently, for example in custom JDBC access code,
or in JDBC-based O/R mapping layers.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Provides a convenient holder for disconnected result sets.
* Supported by JdbcTemplate, but can be used independently too.
*
*/
package org.springframework.jdbc.support.rowset;

View File

@@ -1,8 +0,0 @@
<html>
<body>
Provides a convenient holder for disconnected result sets.
Supported by JdbcTemplate, but can be used independently too.
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* Abstraction for handling fields of SQLXML data type.
*
*/
package org.springframework.jdbc.support.xml;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Abstraction for handling fields of SQLXML data type.
</body>
</html>