Author: jtravis
Date: 2007-03-28 13:41:37 -0800 (Wed, 28 Mar 2007)
New Revision: 3944
URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3944
Modified:
trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy
Log:
Expose controller name to the subclasses, and also allow action to be set
Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy
===================================================================
--- trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 20:47:46 UTC (rev 3943)
+++ trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 21:41:37 UTC (rev 3944)
@@ -22,9 +22,9 @@
Log log = LogFactory.getLog(this.getClass())
String action
File pluginDir
+ String controllerName
private invokeArgs
- private String controllerName
private AuthzSubject user
private File viewDir
@@ -32,10 +32,6 @@
this.controllerName = name
}
- private void setAction(String action) {
- this.action = action
- }
-
protected setInvokeArgs(args) {
this.invokeArgs = args
}
|