add javadoc for new method

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1551114 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-12-16 04:38:22 +00:00
parent 22bb1a093e
commit 8c7af5e0e2
1 changed files with 9 additions and 0 deletions

View File

@ -136,6 +136,15 @@ public interface UserManager
User findUser( String username )
throws UserNotFoundException, UserManagerException;
/**
* Find a User using a User name.
*
* @param username the username to find.
* @param useCache to use or not caching
* @return the user.
* @since 2.2
* @throws UserNotFoundException if the user was not found.
*/
User findUser( String username, boolean useCache )
throws UserNotFoundException, UserManagerException;