Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 82776 invoked from network); 13 Mar 2008 20:44:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Mar 2008 20:44:19 -0000 Received: (qmail 93032 invoked by uid 500); 13 Mar 2008 20:44:17 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 93006 invoked by uid 500); 13 Mar 2008 20:44:16 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 92995 invoked by uid 99); 13 Mar 2008 20:44:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Mar 2008 13:44:16 -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; Thu, 13 Mar 2008 20:43:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 03F3F1A9832; Thu, 13 Mar 2008 13:43:58 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r636875 - in /db/derby/code/trunk/java/engine/org/apache/derby: authentication/SystemPrincipal.java iapi/jdbc/DRDAServerStarter.java Date: Thu, 13 Mar 2008 20:43:58 -0000 To: derby-commits@db.apache.org From: mikem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080313204359.03F3F1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mikem Date: Thu Mar 13 13:43:56 2008 New Revision: 636875 URL: http://svn.apache.org/viewvc?rev=636875&view=rev Log: javadoc fixes. Modified: db/derby/code/trunk/java/engine/org/apache/derby/authentication/SystemPrincipal.java db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/DRDAServerStarter.java Modified: db/derby/code/trunk/java/engine/org/apache/derby/authentication/SystemPrincipal.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/authentication/SystemPrincipal.java?rev=636875&r1=636874&r2=636875&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/authentication/SystemPrincipal.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/authentication/SystemPrincipal.java Thu Mar 13 13:43:56 2008 @@ -41,7 +41,7 @@ *

* According to JAASRefGuide, Principal classes must implement Serializable. * - * @see Principal#name + * @see Principal#getName * @see JAASRefGuide on Principals */ final public class SystemPrincipal implements Principal, Serializable { Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/DRDAServerStarter.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/DRDAServerStarter.java?rev=636875&r1=636874&r2=636875&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/DRDAServerStarter.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/DRDAServerStarter.java Thu Mar 13 13:43:56 2008 @@ -97,10 +97,11 @@ /** * Sets configuration information for the network server to be started. - * @param address InetAddress to listen on - * @param portNumber portNumber to listen on - * @param userName the user name for actions requiring authorization - * @param password the password for actions requiring authorization + * @param listenAddress InetAddress to listen on + * @param portNumber portNumber to listen on + * @param userName the user name for actions requiring authorization + * @param password the password for actions requiring authorization + * * @throws Exception on error * @see NetworkServerControl */