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 2009/01/09 16:17:23 UTC

svn commit: r733058 - /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/lock/LockManager.java

Author: angela
Date: Fri Jan  9 07:17:23 2009
New Revision: 733058

URL: http://svn.apache.org/viewvc?rev=733058&view=rev
Log:
javadoc

Modified:
    jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/lock/LockManager.java

Modified: jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/lock/LockManager.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/lock/LockManager.java?rev=733058&r1=733057&r2=733058&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/lock/LockManager.java (original)
+++ jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/lock/LockManager.java Fri Jan  9 07:17:23 2009
@@ -97,6 +97,7 @@
      * @return <code>true</code> if the node given holds a lock;
      *         otherwise returns <code>false</code>
      * @see javax.jcr.Node#holdsLock
+     * @throws javax.jcr.RepositoryException  If an exception occurs.
      */
     boolean holdsLock(NodeImpl node) throws RepositoryException;
 
@@ -110,6 +111,7 @@
      * @param node node
      * @return if the specified session holds a lock on the given node;
      *         otherwise returns <code>false</code>
+     * @throws javax.jcr.RepositoryException If an exception occurs.
      */
     boolean isLockHolder(Session session, NodeImpl node) throws RepositoryException;
 
@@ -122,6 +124,7 @@
      * of a lock held by this node or by a deep lock on a node above this
      * node; otherwise returns <code>false</code>
      * @see javax.jcr.Node#isLocked
+     * @throws javax.jcr.RepositoryException If an exception occurs.
      */
     boolean isLocked(NodeImpl node) throws RepositoryException;