From 68af0bab7ea5b6072957f9c8a7925f9d41cabccd Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 8 Jun 2015 10:16:32 -0700 Subject: [PATCH] GUAC-1176: Field.Type is no longer absolutely all possible types - it is only the set of types supported by default. --- .../src/main/java/org/glyptodon/guacamole/form/Field.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guacamole-ext/src/main/java/org/glyptodon/guacamole/form/Field.java b/guacamole-ext/src/main/java/org/glyptodon/guacamole/form/Field.java index 7da40ec75..4f29ee8e0 100644 --- a/guacamole-ext/src/main/java/org/glyptodon/guacamole/form/Field.java +++ b/guacamole-ext/src/main/java/org/glyptodon/guacamole/form/Field.java @@ -39,7 +39,11 @@ import org.codehaus.jackson.map.annotate.JsonSerialize; public class Field { /** - * All possible types of field. + * All types of fields which are available by default. Additional field + * types may be defined by extensions by using a unique field type name and + * registering that name with the form service within JavaScript. + * + * See FormService.js. */ public static class Type {