GUACAMOLE-5: Implement QUERY_PARAMETER field type.

This commit is contained in:
Michael Jumper
2016-04-20 12:06:40 -07:00
parent 0f49c39ed4
commit ad50a77293
2 changed files with 24 additions and 10 deletions

View File

@@ -99,6 +99,12 @@ public class Field {
*/
public static String TIME = "TIME";
/**
* An HTTP query parameter which is expected to be embedded in the URL
* given to a user.
*/
public static String QUERY_PARAMETER = "QUERY_PARAMETER";
}
/**