Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/217#discussion_r159720364
--- Diff: guacamole/src/main/webapp/app/rest/types/Connection.js ---
@@ -104,6 +104,15 @@ angular.module('rest').factory('Connection', [function
defineConnection() {
*/
this.sharingProfiles = template.sharingProfiles;
+ /**
+ * The time that this connection was last used, in seconds since
+ * 1970-01-01 00:00:00 UTC. If this information is unknown or
+ * unavailable, this will be null.
+ *
+ * @type Number
--- End diff --
Whoops - didn't see this comment. Yes, the Java `Date` is automatically
converted to a timestamp in seconds by Jersey+Jackson when the object is
serialized to JSON.
---