Return-Path: X-Original-To: apmail-tomcat-dev-archive@www.apache.org Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BE56A11D6F for ; Mon, 12 May 2014 01:36:31 +0000 (UTC) Received: (qmail 62597 invoked by uid 500); 10 May 2014 22:02:25 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 43522 invoked by uid 500); 10 May 2014 22:01:09 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 18063 invoked by uid 99); 10 May 2014 21:59:17 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 May 2014 21:59:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 May 2014 13:20:46 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BCB132388868 for ; Sat, 10 May 2014 13:20:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1593699 - in /tomcat/trunk/java/org/apache/tomcat/dbcp/pool2: impl/package.html package.html Date: Sat, 10 May 2014 13:20:22 -0000 To: dev@tomcat.apache.org From: kkolinko@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140510132022.BCB132388868@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kkolinko Date: Sat May 10 13:20:22 2014 New Revision: 1593699 URL: http://svn.apache.org/r1593699 Log: Fix broken javadoc links. Noted when reviewing results of 'ant release' step from buildbot. Modified: tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/impl/package.html tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/package.html Modified: tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/impl/package.html URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/impl/package.html?rev=1593699&r1=1593698&r2=1593699&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/impl/package.html (original) +++ tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/impl/package.html Sat May 10 13:20:22 2014 @@ -17,26 +17,26 @@ - Package Documentation for org.apache.commons.pool2.impl + Package Documentation for org.apache.tomcat.dbcp.pool2.impl

Object pooling API implementations.

- {@link org.apache.commons.pool2.impl.GenericObjectPool GenericObjectPool} - ({@link org.apache.commons.pool2.impl.GenericKeyedObjectPool GenericKeyedObjectPool}) + {@link org.apache.tomcat.dbcp.pool2.impl.GenericObjectPool GenericObjectPool} + ({@link org.apache.tomcat.dbcp.pool2.impl.GenericKeyedObjectPool GenericKeyedObjectPool}) provides a more robust (but also more complicated) - implementation of {@link org.apache.commons.pool2.ObjectPool ObjectPool} - ({@link org.apache.commons.pool2.KeyedObjectPool KeyedObjectPool}). + implementation of {@link org.apache.tomcat.dbcp.pool2.ObjectPool ObjectPool} + ({@link org.apache.tomcat.dbcp.pool2.KeyedObjectPool KeyedObjectPool}).

- {@link org.apache.commons.pool2.impl.SoftReferenceObjectPool SoftReferenceObjectPool} + {@link org.apache.tomcat.dbcp.pool2.impl.SoftReferenceObjectPool SoftReferenceObjectPool} provides a {@link java.lang.ref.SoftReference SoftReference} based - {@link org.apache.commons.pool2.ObjectPool ObjectPool}. + {@link org.apache.tomcat.dbcp.pool2.ObjectPool ObjectPool}.

- See also the {@link org.apache.commons.pool2} package. + See also the {@link org.apache.tomcat.dbcp.pool2} package.

Modified: tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/package.html URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/package.html?rev=1593699&r1=1593698&r2=1593699&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/package.html (original) +++ tomcat/trunk/java/org/apache/tomcat/dbcp/pool2/package.html Sat May 10 13:20:22 2014 @@ -17,14 +17,14 @@ - Package Documentation for org.apache.commons.pool2 + Package Documentation for org.apache.tomcat.dbcp.pool2

Object pooling API.

- The org.apache.commons.pool2 package defines a simple + The org.apache.tomcat.dbcp.pool2 package defines a simple interface for a pool of object instances, and a handful of base classes that may be useful when creating pool implementations.

@@ -39,12 +39,12 @@ interfaces:

-
{@link org.apache.commons.pool2.ObjectPool ObjectPool}
+
{@link org.apache.tomcat.dbcp.pool2.ObjectPool ObjectPool}
defines a simple object pooling interface, with methods for borrowing instances from and returning them to the pool.
-
{@link org.apache.commons.pool2.PooledObjectFactory PooledObjectFactory}
+
{@link org.apache.tomcat.dbcp.pool2.PooledObjectFactory PooledObjectFactory}
defines lifecycle methods for object instances contained within a pool. By associating a factory with a pool, the pool can create new object @@ -55,8 +55,8 @@ The pool package also provides a keyed pool interface, which pools instances of multiple types, accessed according to an arbitrary key. See - {@link org.apache.commons.pool2.KeyedObjectPool KeyedObjectPool} and - {@link org.apache.commons.pool2.KeyedPooledObjectFactory + {@link org.apache.tomcat.dbcp.pool2.KeyedObjectPool KeyedObjectPool} and + {@link org.apache.tomcat.dbcp.pool2.KeyedPooledObjectFactory KeyedPooledObjectFactory}.

--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org