From 653b4e0134cbef23bcb0f228caf80ad84a0e67cb Mon Sep 17 00:00:00 2001 From: Jared Frees Date: Thu, 14 Jun 2018 11:15:57 -0400 Subject: [PATCH] Updated JavaDoc for addStandardTokens --- .../java/org/apache/guacamole/token/StandardTokens.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java b/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java index 760748179..b98badec1 100644 --- a/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java +++ b/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java @@ -150,10 +150,11 @@ public class StandardTokens { * Adds tokens which are standardized by guacamole-ext to the given * TokenFilter using the values from the given AuthenticatedUser object, * including any associated credentials. These standardized tokens include - * the current username (GUAC_USERNAME), password (GUAC_PASSWORD), and the - * server date and time (GUAC_DATE and GUAC_TIME respectively). If either - * the username or password are not set within the given user or their - * provided credentials, the corresponding token(s) will remain unset. + * the current username (GUAC_USERNAME), password (GUAC_PASSWORD), the + * server date and time (GUAC_DATE and GUAC_TIME respectively), and custom + * user attributes. If either the username or password are not set within + * the given user or their provided credentials, the corresponding token(s) + * will remain unset. * * @param filter * The TokenFilter to add standard tokens to.