Update docs to reflect null return value.

This commit is contained in:
Michael Jumper
2011-12-21 00:11:18 -08:00
parent 76b6f2af05
commit 6ff00e28ea

View File

@@ -58,10 +58,10 @@ public interface AuthenticationProvider<CredentialType> {
* *
* @param credentials The credentials to use to retrieve authorized * @param credentials The credentials to use to retrieve authorized
* configurations. * 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 * @throws GuacamoleException If an error occurs while retrieving
* configurations, or the credentials given * configurations.
* are invalid.
*/ */
public Map<String, GuacamoleConfiguration> public Map<String, GuacamoleConfiguration>
getAuthorizedConfigurations(CredentialType credentials) getAuthorizedConfigurations(CredentialType credentials)