From commits-return-9089-apmail-jackrabbit-commits-archive=jackrabbit.apache.org@jackrabbit.apache.org Thu Oct 22 13:43:35 2009 Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 19204 invoked from network); 22 Oct 2009 13:43:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 Oct 2009 13:43:35 -0000 Received: (qmail 3635 invoked by uid 500); 22 Oct 2009 13:43:35 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 3560 invoked by uid 500); 22 Oct 2009 13:43:35 -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 3551 invoked by uid 99); 22 Oct 2009 13:43:35 -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:43:35 +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:43:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EA42723888FE; Thu, 22 Oct 2009 13:43:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r828686 - /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/User.java Date: Thu, 22 Oct 2009 13:43:12 -0000 To: commits@jackrabbit.apache.org From: angela@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091022134312.EA42723888FE@eris.apache.org> Author: angela Date: Thu Oct 22 13:43:12 2009 New Revision: 828686 URL: http://svn.apache.org/viewvc?rev=828686&view=rev Log: javadoc Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/User.java Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/User.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/User.java?rev=828686&r1=828685&r2=828686&view=diff ============================================================================== --- jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/User.java (original) +++ jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/User.java Thu Oct 22 13:43:12 2009 @@ -37,11 +37,13 @@ * Returns Credentials for this user. * * @return Credentials for this user. + * @throws javax.jcr.RepositoryException If an error occurs. */ Credentials getCredentials() throws RepositoryException; /** * @return Impersonation for this User. + * @throws javax.jcr.RepositoryException If an error occurs. */ Impersonation getImpersonation() throws RepositoryException; @@ -49,7 +51,7 @@ * Change the password of this user. * * @param password The new password. - * @throws RepositoryException + * @throws RepositoryException If an error occurs. */ void changePassword(String password) throws RepositoryException; }