mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
Provide means for retrieving Users by username.
This commit is contained in:
@@ -48,6 +48,19 @@ import net.sourceforge.guacamole.GuacamoleException;
|
||||
*/
|
||||
public interface UserDirectory {
|
||||
|
||||
/**
|
||||
* Returns the User having the given username.
|
||||
*
|
||||
* @param username The username of the User to return.
|
||||
* @return The User having the given username, or null if no such user
|
||||
* exists.
|
||||
*
|
||||
* @throws GuacamoleException If an error occurs while retrieving the user,
|
||||
* or if permission for retrieving the user is
|
||||
* denied.
|
||||
*/
|
||||
User getUser(String username) throws GuacamoleException;
|
||||
|
||||
/**
|
||||
* Returns a Set containing all Users.
|
||||
*
|
||||
|
Reference in New Issue
Block a user