You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by an...@apache.org on 2006/02/20 17:26:50 UTC

svn commit: r379154 - /incubator/jackrabbit/trunk/jackrabbit/src/main/java/org/apache/jackrabbit/core/SessionImpl.java

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 <code>UUID</code>.
+     *
+     * @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 <code>Node</code> with the given id.
+     *
+     * @param id
+     * @return node with the given <code>NodeId</code>.
+     * @throws ItemNotFoundException if no such node exists or if this
+     * <code>Session</code> does not have permission to access the node.
+     * @throws RepositoryException
      */
     public NodeImpl getNodeById(NodeId id) throws ItemNotFoundException, RepositoryException {
         // check sanity of this session