Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 28430 invoked from network); 18 Apr 2008 17:40:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Apr 2008 17:40:08 -0000 Received: (qmail 88228 invoked by uid 500); 18 Apr 2008 17:40:08 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 88205 invoked by uid 500); 18 Apr 2008 17:40:08 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 88196 invoked by uid 99); 18 Apr 2008 17:40:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Apr 2008 10:40:08 -0700 X-ASF-Spam-Status: No, hits=-2000.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; Fri, 18 Apr 2008 17:39:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2CABC1A9838; Fri, 18 Apr 2008 10:39:46 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r649623 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/TransportConnector.java Date: Fri, 18 Apr 2008 17:39:45 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080418173946.2CABC1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Fri Apr 18 10:39:33 2008 New Revision: 649623 URL: http://svn.apache.org/viewvc?rev=649623&view=rev Log: Added some additional comments Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/TransportConnector.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/TransportConnector.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/TransportConnector.java?rev=649623&r1=649622&r2=649623&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/TransportConnector.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/TransportConnector.java Fri Apr 18 10:39:33 2008 @@ -118,6 +118,10 @@ this.brokerInfo = brokerInfo; } + /** + * + * @deprecated use the {@link #setBrokerService(BrokerService)} method instead. + */ @Deprecated public void setBrokerName(String name) { if (this.brokerInfo==null) { @@ -379,6 +383,9 @@ this.enableStatusMonitor = enableStatusMonitor; } + /** + * This is called by the BrokerService right before it starts the transport. + */ public void setBrokerService(BrokerService brokerService) { this.brokerService = brokerService; }