Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/299#discussion_r194169785
--- Diff:
guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java ---
@@ -74,6 +78,12 @@
*/
private static final String TIME_FORMAT = "HHmmss";
+ /**
+ * Standard prefix to append to beginning of the name of each custom
+ * LDAP attribute before adding attributes as tokens.
+ */
+ private static final String LDAP_ATTR_PREFIX = "USER_ATTR:";
--- End diff --
As with @mike-jumper's suggestion above, I'd say make this prefix more
generic.
---