GUACAMOLE-25: Implement new "RESOURCE_CLOSED" status code.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/d0533d09 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/d0533d09 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/d0533d09 Branch: refs/heads/master Commit: d0533d097feb19927feb5a546716f5fbea75deba Parents: df3347f Author: Michael Jumper <[email protected]> Authored: Sun May 1 23:51:50 2016 -0700 Committer: Michael Jumper <[email protected]> Committed: Mon May 23 21:08:54 2016 -0700 ---------------------------------------------------------------------- guacamole-common-js/src/main/webapp/modules/Status.js | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/d0533d09/guacamole-common-js/src/main/webapp/modules/Status.js ---------------------------------------------------------------------- diff --git a/guacamole-common-js/src/main/webapp/modules/Status.js b/guacamole-common-js/src/main/webapp/modules/Status.js index e105f60..457dc3c 100644 --- a/guacamole-common-js/src/main/webapp/modules/Status.js +++ b/guacamole-common-js/src/main/webapp/modules/Status.js @@ -133,6 +133,14 @@ Guacamole.Status.Code = { "RESOURCE_CONFLICT": 0x0205, /** + * The operation could not be performed as the requested resource is now + * closed. + * + * @type {Number} + */ + "RESOURCE_CLOSED": 0x0206, + + /** * The operation could not be performed because bad parameters were given. * * @type {Number}
