|
From: <jt...@hy...> - 2007-03-22 20:38:21
|
Author: jtravis Date: 2007-03-22 12:37:57 -0800 (Thu, 22 Mar 2007) New Revision: 3823 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3823 Modified: trunk/src/org/hyperic/hq/ui/rendit/rendit_sys/org/hyperic/hq/ui/rendit/helpers/LiveDataHelper.groovy Log: Align changes with Morg's addition of authzsubject to LiveData Modified: trunk/src/org/hyperic/hq/ui/rendit/rendit_sys/org/hyperic/hq/ui/rendit/helpers/LiveDataHelper.groovy =================================================================== --- trunk/src/org/hyperic/hq/ui/rendit/rendit_sys/org/hyperic/hq/ui/rendit/helpers/LiveDataHelper.groovy 2007-03-22 20:29:58 UTC (rev 3822) +++ trunk/src/org/hyperic/hq/ui/rendit/rendit_sys/org/hyperic/hq/ui/rendit/helpers/LiveDataHelper.groovy 2007-03-22 20:37:57 UTC (rev 3823) @@ -13,11 +13,11 @@ private getDataMan() { LiveDataManagerEJBImpl.one } String[] getCommands(resource) { - dataMan.getCommands(resource.entityId) + dataMan.getCommands(userVal, resource.entityId) } JSONArray getData(resource, command) { - new JSONArray(dataMan.getData(resource.entityId, command)) + new JSONArray(dataMan.getData(userVal, resource.entityId, command)) } } |