Github user necouchman commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-client/pull/194#discussion_r143099266
--- Diff:
guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java ---
@@ -51,6 +51,16 @@
public static final String CLIENT_ADDRESS_TOKEN =
"GUAC_CLIENT_ADDRESS";
/**
+ * The token that triggers prompts for numeric fields.
+ */
+ public static final String PROMPT_TOKEN_NUMERIC = "-1";
+
+ /**
+ * The token that triggers prompts for string fields.
+ */
+ public static final String PROMPT_TOKEN_STRING = "GUAC_PROMPT";
+
+ /**
--- End diff --
Are these "standard" tokens?
---