Return-Path: Delivered-To: apmail-db-ojb-dev-archive@www.apache.org Received: (qmail 8771 invoked from network); 2 Aug 2007 15:35:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Aug 2007 15:35:00 -0000 Received: (qmail 7745 invoked by uid 500); 2 Aug 2007 15:35:00 -0000 Delivered-To: apmail-db-ojb-dev-archive@db.apache.org Received: (qmail 7719 invoked by uid 500); 2 Aug 2007 15:35:00 -0000 Mailing-List: contact ojb-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "OJB Developers List" Reply-To: "OJB Developers List" Delivered-To: mailing list ojb-dev@db.apache.org Received: (qmail 7708 invoked by uid 500); 2 Aug 2007 15:35:00 -0000 Received: (qmail 7705 invoked by uid 99); 2 Aug 2007 15:35:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 08:35:00 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 15:35:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 08B881A981A; Thu, 2 Aug 2007 08:34:40 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r562138 - in /db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy: AbstractIndirectionHandler.java IndirectionHandlerCGLIBImpl.java Date: Thu, 02 Aug 2007 15:34:39 -0000 To: ojb-commits@db.apache.org From: arminw@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070802153440.08B881A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: arminw Date: Thu Aug 2 08:34:39 2007 New Revision: 562138 URL: http://svn.apache.org/viewvc?view=rev&rev=562138 Log: change access specifier of a field, add comment Modified: db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/AbstractIndirectionHandler.java db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/IndirectionHandlerCGLIBImpl.java Modified: db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/AbstractIndirectionHandler.java URL: http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/AbstractIndirectionHandler.java?view=diff&rev=562138&r1=562137&r2=562138 ============================================================================== --- db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/AbstractIndirectionHandler.java (original) +++ db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/AbstractIndirectionHandler.java Thu Aug 2 08:34:39 2007 @@ -48,7 +48,7 @@ /** Profile key used when lazy-loading with per-thread metadata profiles. */ private Object _profileKey; /** The real subject which this is hidden by the proxy */ - private Object _realSubject = null; + Object _realSubject = null; /** Represents the identity of the real subject. When the real subject is not * yet materialized, it can be loaded from the underlying db by this identity object */ private Identity _id = null; Modified: db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/IndirectionHandlerCGLIBImpl.java URL: http://svn.apache.org/viewvc/db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/IndirectionHandlerCGLIBImpl.java?view=diff&rev=562138&r1=562137&r2=562138 ============================================================================== --- db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/IndirectionHandlerCGLIBImpl.java (original) +++ db/ojb/branches/OJB_1_0_RELEASE/src/java/org/apache/ojb/broker/core/proxy/IndirectionHandlerCGLIBImpl.java Thu Aug 2 08:34:39 2007 @@ -18,13 +18,15 @@ import org.apache.ojb.broker.Identity; import org.apache.ojb.broker.PBKey; - +/** + * CGLib based indirection handler implementation. + */ public class IndirectionHandlerCGLIBImpl extends AbstractIndirectionHandler implements IndirectionHandlerCGLIB { /** * Creates a new indirection handler for the indicated object. * - * @param persistenceConf The persistence configuration + * @param brokerKey The associated {@link org.apache.ojb.broker.PBKey}. * @param id The identity of the subject */ public IndirectionHandlerCGLIBImpl(PBKey brokerKey, Identity id) --------------------------------------------------------------------- To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org For additional commands, e-mail: ojb-dev-help@db.apache.org