Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 19955 invoked from network); 22 Oct 2009 13:44:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 Oct 2009 13:44:46 -0000 Received: (qmail 9892 invoked by uid 500); 22 Oct 2009 13:44:46 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 9852 invoked by uid 500); 22 Oct 2009 13:44:46 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 9843 invoked by uid 99); 22 Oct 2009 13:44:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Oct 2009 13:44:46 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Oct 2009 13:44:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 500BF23888EA; Thu, 22 Oct 2009 13:44:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r828688 - /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/Authorizable.java Date: Thu, 22 Oct 2009 13:44:23 -0000 To: commits@jackrabbit.apache.org From: angela@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091022134423.500BF23888EA@eris.apache.org> 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 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 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 true 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 Authorizable. * - * @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 Authorizable. * - * @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 * null. * - * @param name + * @param name The name of the property to be retrieved. * @return value of the property with the given name or null * 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.