diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2016-02-17 12:00:46 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-02-17 12:05:10 +0100 |
commit | d47fd84a6a16b1c9c4b4ce5a3279b9ecaea54c1b (patch) | |
tree | 231d0b6732c552e3d7855305ccd2a9162c04cd6a /afm-client/app/Backend | |
parent | 3482263a53803b6e7662e67b39ed97bdd9fcef13 (diff) |
Implement closing windows of remote launchs
Change-Id: Ibcaa672271b1da94dd87291ea0531b5c520fa373
Diffstat (limited to 'afm-client/app/Backend')
-rw-r--r-- | afm-client/app/Backend/RestApis/AfmMainMockApi.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/afm-client/app/Backend/RestApis/AfmMainMockApi.js b/afm-client/app/Backend/RestApis/AfmMainMockApi.js index 1715c21..6976690 100644 --- a/afm-client/app/Backend/RestApis/AfmMainMockApi.js +++ b/afm-client/app/Backend/RestApis/AfmMainMockApi.js @@ -65,6 +65,32 @@ function NewApi(handle, prefix) { res.send(Response); }); + + handle.app.get (prefix +'/start', function (req, res) { + var apps = { "runid": 2, "uri": "/opa/images/avatars/tux-bzh.png"}; + + var Response= { jtype: "AJB_reply", + request: { "prefix": "afm-main", "api": "start", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" }, + response: apps + }; + + /* "jtype":"AJB_reply","request":{"prefix":"afm-main","api":"runnables","status":"processed"},"response":{"runnables":[{"id":"webapps-annex@0.0","version":"0.0.10","width":0,"height":0,"name":"Annex","description":"Reversi/Othello","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"},{"id":"webapps-rabbit@0.0","version":"0.0.8","width":0,"height":0,"name":"Rabbit","description":"Fun grid game where the rabbit finds and eats the carrots dodging the foxes.","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"}]}}*/ + + res.send(Response); + }); + + handle.app.get (prefix +'/terminate', function (req, res) { + var apps = {}; + + var Response= { jtype: "AJB_reply", + request: { "prefix": "afm-main", "api": "terminate", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" }, + response: apps + }; + + /* "jtype":"AJB_reply","request":{"prefix":"afm-main","api":"runnables","status":"processed"},"response":{"runnables":[{"id":"webapps-annex@0.0","version":"0.0.10","width":0,"height":0,"name":"Annex","description":"Reversi/Othello","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"},{"id":"webapps-rabbit@0.0","version":"0.0.8","width":0,"height":0,"name":"Rabbit","description":"Fun grid game where the rabbit finds and eats the carrots dodging the foxes.","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"}]}}*/ + + res.send(Response); + }); } // Export Class |