GUAC-1213: Add time zone field type.

This commit is contained in:
Michael Jumper
2015-08-09 22:14:19 -07:00
parent cbb5db9e57
commit 65cdb5daef
7 changed files with 798 additions and 2 deletions

View File

@@ -129,7 +129,16 @@ angular.module('rest').factory('Field', [function defineField() {
*
* @type String
*/
MULTILINE : "MULTILINE"
MULTILINE : "MULTILINE",
/**
* The type string associated with parameters that may contain timezone
* IDs. Valid timezone IDs are dictated by Java:
* http://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getAvailableIDs%28%29
*
* @type String
*/
TIMEZONE : "TIMEZONE"
};