From 6ff00e28eae7343ebd79cbff112d575e0589b492 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 21 Dec 2011 00:11:18 -0800 Subject: [PATCH] Update docs to reflect null return value. --- .../guacamole/net/auth/AuthenticationProvider.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/AuthenticationProvider.java b/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/AuthenticationProvider.java index 42249f7b3..b938a90a2 100644 --- a/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/AuthenticationProvider.java +++ b/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/AuthenticationProvider.java @@ -58,10 +58,10 @@ public interface AuthenticationProvider { * * @param credentials The credentials to use to retrieve authorized * configurations. - * @return A Map of all configurations authorized by the given credentials. + * @return A Map of all configurations authorized by the given credentials, + * or null if the credentials given are not authorized. * @throws GuacamoleException If an error occurs while retrieving - * configurations, or the credentials given - * are invalid. + * configurations. */ public Map getAuthorizedConfigurations(CredentialType credentials)