Return-Path: Delivered-To: apmail-incubator-jackrabbit-commits-archive@www.apache.org Received: (qmail 913 invoked from network); 20 Feb 2006 16:27:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Feb 2006 16:27:12 -0000 Received: (qmail 98474 invoked by uid 500); 20 Feb 2006 16:27:11 -0000 Mailing-List: contact jackrabbit-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jackrabbit-dev@incubator.apache.org Delivered-To: mailing list jackrabbit-commits@incubator.apache.org Received: (qmail 98463 invoked by uid 500); 20 Feb 2006 16:27:11 -0000 Delivered-To: apmail-incubator-jackrabbit-cvs@incubator.apache.org Received: (qmail 98460 invoked by uid 99); 20 Feb 2006 16:27:11 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Feb 2006 08:27:11 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 20 Feb 2006 08:27:10 -0800 Received: (qmail 557 invoked by uid 65534); 20 Feb 2006 16:26:50 -0000 Message-ID: <20060220162650.556.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r379154 - /incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java Date: Mon, 20 Feb 2006 16:26:50 -0000 To: jackrabbit-cvs@incubator.apache.org From: angela@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: angela Date: Mon Feb 20 08:26:46 2006 New Revision: 379154 URL: http://svn.apache.org/viewcvs?rev=379154&view=rev Log: - javadoc issue: getNodeByUUID(UUID), getNodeById(NodeId) are not defined by interface/base class. replacing @inheritDoc by description. Modified: incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java Modified: incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java?rev=379154&r1=379153&r2=379154&view=diff ============================================================================== --- incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java (original) +++ incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java Mon Feb 20 08:26:46 2006 @@ -691,7 +691,15 @@ } /** - * {@inheritDoc} + * Retrieve the referenceable node with the given UUID. + * + * @param uuid + * @return referenceable node with the given uuid + * @throws ItemNotFoundException if no node exists with the given uuid or + * if the existing node is not referenceable. + * @throws RepositoryException + * @see #getNodeByUUID(String) + * @see #getNodeById(NodeId) */ public Node getNodeByUUID(UUID uuid) throws ItemNotFoundException, RepositoryException { NodeImpl node = getNodeById(new NodeId(uuid)); @@ -704,7 +712,13 @@ } /** - * {@inheritDoc} + * Retrieve the Node with the given id. + * + * @param id + * @return node with the given NodeId. + * @throws ItemNotFoundException if no such node exists or if this + * Session does not have permission to access the node. + * @throws RepositoryException */ public NodeImpl getNodeById(NodeId id) throws ItemNotFoundException, RepositoryException { // check sanity of this session