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/10/22 15:44:23 UTC

svn commit: r828688 - /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java

Author: angela
Date: Thu Oct 22 13:44:22 2009
New Revision: 828688

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

Modified:
    jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java

Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java?rev=828688&r1=828687&r2=828688&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java (original)
+++ jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java Thu Oct 22 13:44:22 2009
@@ -81,14 +81,14 @@
 
     /**
      * @return all {@link Group}s, this Authorizable is declared member of.
-     * @throws RepositoryException
+     * @throws RepositoryException If an error occurs.
      */
     Iterator<Group> declaredMemberOf() throws RepositoryException;
 
     /**
      * @return all {@link Group}s, this Authorizable is member of included
      *         indirect group membership.
-     * @throws RepositoryException
+     * @throws RepositoryException If an error occurs.
      */
     Iterator<Group> memberOf() throws RepositoryException;
 
@@ -116,9 +116,9 @@
     /**
      * Tests if a the property with specified name exists.
      *
-     * @param name
-     * @return
-     * @throws RepositoryException
+     * @param name The name of the property to be tested.
+     * @return <code>true</code> if a property with the given name exists.
+     * @throws RepositoryException If an error occurs.
      * @see #getProperty(String)
      */
     boolean hasProperty(String name) throws RepositoryException;
@@ -126,8 +126,8 @@
     /**
      * Set an arbitrary property to this <code>Authorizable</code>.
      *
-     * @param name
-     * @param value
+     * @param name The name of the property to be added or modified.
+     * @param value The desired value.
      * @throws RepositoryException If the specified property could not be set.
      */
     void setProperty(String name, Value value) throws RepositoryException;
@@ -135,8 +135,8 @@
     /**
      * Set an arbitrary property to this <code>Authorizable</code>.
      *
-     * @param name
-     * @param value multiple values
+     * @param name The name of the property to be added or modified.
+     * @param value The desired property values.
      * @throws RepositoryException If the specified property could not be set.
      */
     void setProperty(String name, Value[] value) throws RepositoryException;
@@ -145,7 +145,7 @@
      * Returns the values for the properties with the specified name or
      * <code>null</code>.
      *
-     * @param name
+     * @param name The name of the property to be retrieved.
      * @return value of the property with the given name or <code>null</code>
      *         if no such property exists.
      * @throws RepositoryException If an error occurs.
@@ -155,7 +155,7 @@
     /**
      * Removes the property with the given name.
      *
-     * @param name
+     * @param name The name of the property to be removed.
      * @return true If the property with the specified name was successfully
      *         removed; false if no such property was present.
      * @throws RepositoryException If an error occurs.