X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=blobdiff_plain;f=afm-client%2Fapp%2FBackend%2FRestApis%2FAfmMainMockApi.js;h=e615e59f7f65fa8df140e38d4fab27dedc27706e;hp=0d8cd878039b4c6adc40c03532fbbc92b91e7eeb;hb=be83a8f382cf2fea98161bfd6d51719aacbf9aa9;hpb=1a4ed39bf86b2115eb0f1387d1e988462b492776 diff --git a/afm-client/app/Backend/RestApis/AfmMainMockApi.js b/afm-client/app/Backend/RestApis/AfmMainMockApi.js index 0d8cd87..e615e59 100644 --- a/afm-client/app/Backend/RestApis/AfmMainMockApi.js +++ b/afm-client/app/Backend/RestApis/AfmMainMockApi.js @@ -22,11 +22,11 @@ * /api/afm-main/runnables // no params * /api/afm-main/details &id="xxxx" * /api/afm-main/start &id="xxxx" - * /api/afm-main/terminate &id="xxxx" - * /api/afm-main/stop &id="xxxx" - * /api/afm-main/continue &id="xxxx" - * /api/afm-main/runners &id="xxxx" - * /api/afm-main/state &id="xxxx" + * /api/afm-main/terminate &runid="xxxx" + * /api/afm-main/stop &runid="xxxx" + * /api/afm-main/continue &runid="xxxx" + * /api/afm-main/runners // no params + * /api/afm-main/state &runid="xxxx" * ----------------------------------------------------------------------*/ @@ -38,11 +38,13 @@ function NewApi(handle, prefix) { handle.app.get (prefix +'/runnables', function (req, res) { var Response= { jtype: "AJB_reply", request: { "prefix": "afm-main", "api": "runnables", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" }, - response: [ + response: {runnables: [ {id: "webapps-rabbit@0.0", version: "0.0.8", name: "Rabbit", description: "Fun grid game where the rabbit finds and eats the carrots dodging the foxes.", shortname: "", author: "Todd Brandt " }, {id: "webapps-annex@0.0", version: "0.0.10", name: "Annex", description: "Reversi/Othello", shortname: "", author: "Todd Brandt " }, {id: "webapps-memory-match@1.1", version: "1.1.7", name: "MemoryMatch", description: "Memory match", shortname: "", author: "Todd Brandt " } - ]}; + ]}}; + + /* "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 "},{"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 "}]}}*/ res.send(Response); });