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:
parent
22bb1a093e
commit
8c7af5e0e2
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue