Uses of Interface
org.apache.turbine.util.RunData

Packages that use RunData
org.apache.turbine   
org.apache.turbine.modules   
org.apache.turbine.modules.actions   
org.apache.turbine.modules.actions.sessionvalidator   
org.apache.turbine.modules.layouts   
org.apache.turbine.modules.navigations   
org.apache.turbine.modules.pages   
org.apache.turbine.modules.screens   
org.apache.turbine.modules.screens.error   
org.apache.turbine.services Contains the Service framework for Turbine. 
org.apache.turbine.services.freemarker The Freemarker service is deprecated, you should use Velocity. 
org.apache.turbine.services.intake.model   
org.apache.turbine.services.jsp   
org.apache.turbine.services.jsp.util   
org.apache.turbine.services.localization   
org.apache.turbine.services.logging   
org.apache.turbine.services.naming   
org.apache.turbine.services.pull   
org.apache.turbine.services.pull.util   
org.apache.turbine.services.rundata   
org.apache.turbine.services.template   
org.apache.turbine.services.uniqueid   
org.apache.turbine.services.velocity   
org.apache.turbine.services.webmacro The WebMacro service is deprecated, you should use Velocity. 
org.apache.turbine.util   
org.apache.turbine.util.parser   
org.apache.turbine.util.template   
org.apache.turbine.util.upload   
org.apache.turbine.util.velocity   
org.apache.turbine.util.webmacro   
 

Uses of RunData in org.apache.turbine
 

Methods in org.apache.turbine with parameters of type RunData
 void Turbine.init(RunData data)
          Initializes the services which need RunData to initialize themselves (post startup).
static void Turbine.saveServletInfo(RunData data)
          Save some information about this servlet so that it can be utilized by object instances that do not have direct access to RunData.
 

Uses of RunData in org.apache.turbine.modules
 

Methods in org.apache.turbine.modules with parameters of type RunData
abstract  void Action.doPerform(RunData data)
          A subclass must override this method to perform itself.
protected  void Action.perform(RunData data)
          Subclasses can override this method to add additional functionality.
abstract  void ActionEvent.doPerform(RunData data)
          You need to implement this in your classes that extend this class.
protected  void ActionEvent.perform(RunData data)
          This overrides the default Action.perform() to execute the doEvent() method.
 void ActionEvent.executeEvents(RunData data)
          This method should be called to execute the event based system.
abstract  void GenericLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the external action that has been set.
 void ScheduledJobLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the external ScheduledJob.
protected abstract  void Layout.doBuild(RunData data)
          A subclass must override this method to build itself.
protected  void Layout.build(RunData data)
          Subclasses can override this method to add additional functionality.
protected abstract  void Page.doBuild(RunData data)
          A subclass must override this method to build itself.
protected  void Page.build(RunData data)
          Subclasses can override this method to add additional functionality.
protected abstract  org.apache.ecs.ConcreteElement Screen.doBuild(RunData data)
          A subclass must override this method to build itself.
protected  org.apache.ecs.ConcreteElement Screen.build(RunData data)
          Subclasses can override this method to add additional functionality.
 java.lang.String Screen.getLayout(RunData data)
          If the Layout has not been defined by the Screen then set the layout to be "DefaultLayout".
 void Screen.setLayout(RunData data, java.lang.String layout)
          Set the layout for a Screen.
protected abstract  org.apache.ecs.ConcreteElement Navigation.doBuild(RunData data)
          A subclass must override this method to build itself.
protected  org.apache.ecs.ConcreteElement Navigation.build(RunData data)
          Subclasses can override this method to add additional functionality.
 void PageLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the external page.
 void ActionLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the external action.
 org.apache.ecs.ConcreteElement NavigationLoader.eval(RunData data, java.lang.String name)
          Attempts to load and execute the external Navigation.
 void NavigationLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the external Navigation.
 org.apache.ecs.ConcreteElement ScreenLoader.eval(RunData data, java.lang.String name)
          Attempts to load and execute the external Screen.
 void ScreenLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the Screen.
 void LayoutLoader.exec(RunData data, java.lang.String name)
          Attempts to load and execute the external layout.
 

Uses of RunData in org.apache.turbine.modules.actions
 

Methods in org.apache.turbine.modules.actions with parameters of type RunData
 void WebMacroSiteAction.doPerform(RunData data)
          Deprecated. You SHOULD NOT override this method and implement it in your action.
abstract  void WebMacroSiteAction.doPerform(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. You SHOULD override this method and implement it in your action.
protected  void WebMacroSiteAction.perform(RunData data)
          Deprecated. Sets up the context and then calls super.perform(); thus, subclasses don't have to worry about getting a context themselves!
 void WebMacroSiteAction.setTemplate(RunData data, java.lang.String template)
          Deprecated. This method is used when you want to short circuit an Action and change the template that will be executed next.
protected  org.webmacro.servlet.WebContext WebMacroSiteAction.getContext(RunData data)
          Deprecated. Return the WebContext needed by WebMacro.
abstract  void WebMacroSiteSecureAction.doPerform(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. Implement this to add information to the context.
protected  void WebMacroSiteSecureAction.perform(RunData data)
          Deprecated. This method overrides the method in WebMacroSiteAction to perform a security check first.
protected abstract  boolean WebMacroSiteSecureAction.isAuthorized(RunData data)
          Deprecated. Implement this method to perform the security check needed.
 void LogoutUser.doPerform(RunData data)
          Clears the RunData user object back to an anonymous status not logged in, and with a null ACL.
 void VelocityAction.doPerform(RunData data)
          You SHOULD NOT override this method and implement it in your action.
abstract  void VelocityAction.doPerform(RunData data, org.apache.velocity.context.Context context)
          You SHOULD override this method and implement it in your action.
protected  void VelocityAction.perform(RunData data)
          Sets up the context and then calls super.perform(); thus, subclasses don't have to worry about getting a context themselves!
 void VelocityAction.setTemplate(RunData data, java.lang.String template)
          This method is used when you want to short circuit an Action and change the template that will be executed next.
protected  org.apache.velocity.context.Context VelocityAction.getContext(RunData data)
          Return the Context needed by Velocity.
 void DefaultAction.doPerform(RunData data)
          Execute the action.
 void FreeMarkerSiteCooker.doPerform(RunData data)
          Deprecated. Execute the action.
 void LoginUser.doPerform(RunData data)
          Updates the user's LastLogin timestamp, sets their state to "logged in" and calls RunData.setUser() .
 void AccessController.doPerform(RunData data)
          If there is a user and the user is logged in, doPerform will set the RunData ACL.
abstract  void VelocitySecureAction.doPerform(RunData data, org.apache.velocity.context.Context context)
          Implement this to add information to the context.
protected  void VelocitySecureAction.perform(RunData data)
          This method overrides the method in WebMacroSiteAction to perform a security check first.
protected abstract  boolean VelocitySecureAction.isAuthorized(RunData data)
          Implement this method to perform the security check needed.
 void InitContextsAction.doPerform(RunData data)
          This action will place the contexts defined in the TurbineResources instance (if any) into the data.contexts Hashtable.
 

Uses of RunData in org.apache.turbine.modules.actions.sessionvalidator
 

Methods in org.apache.turbine.modules.actions.sessionvalidator with parameters of type RunData
 void DefaultSessionValidator.doPerform(RunData data)
          Execute the action.
 void TemplateSessionValidator.doPerform(RunData data)
          Execute the action.
 void TemplateSecureSessionValidator.doPerform(RunData data)
          doPerform is virtually identical to DefaultSessionValidator except that it calls template methods instead of bare screen methods.
 

Uses of RunData in org.apache.turbine.modules.layouts
 

Methods in org.apache.turbine.modules.layouts with parameters of type RunData
 void VelocityXslLayout.doBuild(RunData data)
          Method called by LayoutLoader.
 void VelocityECSLayout.doBuild(RunData data)
          Deprecated. Build the layout.
 void WebMacroOnlyLayout.doBuild(RunData data)
          Deprecated. Method called by LayoutLoader.
protected  org.webmacro.servlet.WebContext WebMacroOnlyLayout.getContext(RunData data)
          Deprecated. Return the WebContext needed by WebMacro.
 void VelocityOnlyLayout.doBuild(RunData data)
          Method called by LayoutLoader.
 void VelocityDirectLayout.doBuild(RunData data)
          Method called by LayoutLoader.
 void FreeMarkerSiteLayout.doBuild(RunData data)
          Deprecated. Build the layout.
protected  freemarker.template.SimpleHash FreeMarkerSiteLayout.getContext(RunData data)
          Deprecated. Return the model needed by FreeMarker.
 void WebMacroSiteLayout.doBuild(RunData data)
          Deprecated. Build the layout.
protected  org.webmacro.servlet.WebContext WebMacroSiteLayout.getContext(RunData data)
          Deprecated. Return the WebContext needed by WebMacro.
 void DefaultLayout.doBuild(RunData data)
          Deprecated. Build the layout.
 void JspLayout.doBuild(RunData data)
          Method called by LayoutLoader.
 void FreeMarkerLayout.doBuild(RunData data)
          Deprecated. Build the layout.
 

Uses of RunData in org.apache.turbine.modules.navigations
 

Methods in org.apache.turbine.modules.navigations with parameters of type RunData
protected abstract  void TemplateNavigation.doBuildTemplate(RunData data)
          WebMacro Navigations extending this class should overide this method to perform any particular business logic and add information to the context.
abstract  org.apache.ecs.ConcreteElement TemplateNavigation.buildTemplate(RunData data)
          This Builds the WebMacro/FreeMarker/etc template.
protected  org.apache.ecs.ConcreteElement TemplateNavigation.doBuild(RunData data)
          Calls doBuildTemplate() and then buildTemplate().
 org.apache.ecs.ConcreteElement DefaultTopNavigation.doBuild(RunData data)
          Deprecated. Build the Navigation.
protected  void WebMacroSiteNavigation.doBuildTemplate(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. WebMacro Navigations extending this class should overide this method to perform any particular business logic and add information to the context.
protected  void WebMacroSiteNavigation.doBuildTemplate(RunData data)
          Deprecated. Needs to be implemented to make TemplateNavigation like us.
 org.apache.ecs.ConcreteElement WebMacroSiteNavigation.buildTemplate(RunData data)
          Deprecated. This Builds the WebMacro template.
protected  org.webmacro.servlet.WebContext WebMacroSiteNavigation.getContext(RunData data)
          Deprecated. Return the WebContext needed by WebMacro.
protected  void BaseFreeMarkerNavigation.doBuildTemplate(RunData data, freemarker.template.SimpleHash context)
          Deprecated. Method to be overidden by subclasses to include data in the context.
protected  void BaseFreeMarkerNavigation.doBuildTemplate(RunData data)
          Deprecated. Needs to be implemented to make TemplateNavigation like us.
protected  freemarker.template.SimpleHash BaseFreeMarkerNavigation.getContext(RunData data)
          Deprecated. Return the model needed by FreeMarker.
 org.apache.ecs.ConcreteElement BaseFreeMarkerNavigation.buildTemplate(RunData data)
          Deprecated. Build the template.
protected  void VelocityNavigation.doBuildTemplate(RunData data, org.apache.velocity.context.Context context)
          Velocity Navigations extending this class should overide this method to perform any particular business logic and add information to the context.
protected  void VelocityNavigation.doBuildTemplate(RunData data)
          Needs to be implemented to make TemplateNavigation like us.
 org.apache.ecs.ConcreteElement VelocityNavigation.buildTemplate(RunData data)
          This Builds the Velocity template.
 org.apache.ecs.ConcreteElement DefaultBottomNavigation.doBuild(RunData data)
          Deprecated. Build the Navigation.
 org.apache.ecs.ConcreteElement BaseJspNavigation.buildTemplate(RunData data)
          Method that sets up beans and forward the request to the JSP.
protected  void BaseJspNavigation.doBuildTemplate(RunData data)
          Method to be overidden by subclasses to include data in beans, etc.
 

Uses of RunData in org.apache.turbine.modules.pages
 

Methods in org.apache.turbine.modules.pages with parameters of type RunData
 void DefaultPage.doBuild(RunData data)
          Builds the Page.
protected  void DefaultPage.doBuildBeforeAction(RunData data)
          Can be used by template Pages to stuff the Context into the RunData so that it is available to the Action module and the Screen module via getContext().
protected  void DefaultPage.doBuildAfterAction(RunData data)
          Can be overridden by template Pages to set up data needed to process a template.
protected  void DefaultPage.doPostBuild(RunData data)
          Can be overridden to perform actions when the request is fully processed.
protected  void TemplatePage.doBuildAfterAction(RunData data)
          Works with TemplateService to set up default templates and corresponding class modules.
protected  void VelocityPage.doBuildBeforeAction(RunData data)
          Stuffs the Context into the RunData so that it is available to the Action module and the Screen module via getContext().
protected  void VelocityPage.doPostBuild(RunData data)
          Allows the VelocityService to peform post-request actions.
protected  void JspPage.doBuildBeforeAction(RunData data)
          Stuffs some useful objects into the request so that it is available to the Action module and the Screen module
protected  void WebMacroSitePage.doBuildBeforeAction(RunData data)
          Deprecated. Stuffs the Context into the RunData so that it is available to the Action module and the Screen module via getContext().
protected  void FreeMarkerSitePage.doBuildBeforeAction(RunData data)
          Deprecated. Stuffs the Context into the RunData so that it is available to the Action module and the Screen module via getContext().
 

Uses of RunData in org.apache.turbine.modules.screens
 

Methods in org.apache.turbine.modules.screens with parameters of type RunData
protected abstract  void TemplateScreen.doBuildTemplate(RunData data)
          This method should be overidden by subclasses that wish to add specific business logic.
abstract  org.apache.ecs.ConcreteElement TemplateScreen.buildTemplate(RunData data)
          This method should be implemented by Base template classes.
protected  void TemplateScreen.doPostBuildTemplate(RunData data)
          This method can be overridden to write code that executes when the template has been built (called from a finally clause, so executes regardless of whether an exception is thrown or not)
protected  org.apache.ecs.ConcreteElement TemplateScreen.doBuild(RunData data)
          This method is called by the Screenloader to construct the Screen.
static void TemplateScreen.setTemplate(RunData data, java.lang.String template)
          This method is used when you want to short circuit a Screen and change the template that will be executed next.
 void TemplateScreen.doRedirect(RunData data, java.lang.String screen, java.lang.String template)
          You can call this within a Screen to cause an internal redirect to happen.
 void TemplateScreen.doRedirect(RunData data, java.lang.String template)
          You can call this within a Screen to cause an internal redirect to happen.
protected  void WebMacroSiteScreen.doBuildTemplate(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. WebMacro Screens extending this class should overide this method to perform any particular business logic and add information to the context.
protected  void WebMacroSiteScreen.doBuildTemplate(RunData data)
          Deprecated. Needs to be implemented to make TemplateScreen like us.
 org.apache.ecs.ConcreteElement WebMacroSiteScreen.buildTemplate(RunData data)
          Deprecated. This builds the WebMacro template.
static org.webmacro.servlet.WebContext WebMacroSiteScreen.getContext(RunData data)
          Deprecated. Return the WebContext needed by WebMacro.
protected  void WebMacroSiteErrorScreen.doBuildTemplate(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. Implement this to add information to the context.
protected  void VelocityScreen.doBuildTemplate(RunData data, org.apache.velocity.context.Context context)
          Velocity Screens extending this class should overide this method to perform any particular business logic and add information to the context.
protected  void VelocityScreen.doBuildTemplate(RunData data)
          Needs to be implemented to make TemplateScreen like us.
 org.apache.ecs.ConcreteElement VelocityScreen.buildTemplate(RunData data)
          This builds the Velocity template.
static org.apache.velocity.context.Context VelocityScreen.getContext(RunData data)
          Return the Context needed by Velocity.
protected  void VelocityErrorScreen.doBuildTemplate(RunData data, org.apache.velocity.context.Context context)
          Implement this to add information to the context.
 org.apache.ecs.ConcreteElement Error.doBuild(RunData data)
          Build screen.
 org.apache.ecs.ConcreteElement BaseJspScreen.buildTemplate(RunData data)
          Method that sets up beans and forward the request to the JSP.
protected  void BaseJspScreen.doBuildTemplate(RunData data)
          Method to be overidden by subclasses to include data in beans, etc.
protected  void JspErrorScreen.doBuildTemplate(RunData data)
           
 org.apache.ecs.ConcreteElement VelocityDirectScreen.buildTemplate(RunData data)
          This builds the Velocity template.
protected  org.apache.ecs.ConcreteElement RawScreen.doBuild(RunData data)
          Build the Screen.
protected abstract  java.lang.String RawScreen.getContentType(RunData data)
          Set the content type.
protected abstract  void RawScreen.doOutput(RunData data)
          Actually output the dynamic content.
 java.lang.String RawScreen.getLayout(RunData data)
          The layout must be set to null.
protected  void BaseFreeMarkerScreen.doBuildTemplate(RunData data, freemarker.template.SimpleHash context)
          Deprecated. Screens extending this class should overide this method to perform any particular business logic and add information to the context.
protected  void BaseFreeMarkerScreen.doBuildTemplate(RunData data)
          Deprecated. Needs to be implemented to make TemplateScreen like us.
protected  freemarker.template.SimpleHash BaseFreeMarkerScreen.getContext(RunData data)
          Deprecated. Return the model needed by FreeMarker.
 org.apache.ecs.ConcreteElement BaseFreeMarkerScreen.buildTemplate(RunData data)
          Deprecated. Build the template.
protected abstract  void VelocitySecureScreen.doBuildTemplate(RunData data, org.apache.velocity.context.Context context)
          Implement this to add information to the context.
protected  void VelocitySecureScreen.doBuildTemplate(RunData data)
          This method overrides the method in WebMacroSiteScreen to perform a security check first.
protected abstract  boolean VelocitySecureScreen.isAuthorized(RunData data)
          Implement this method to perform the security check needed.
protected abstract  void WebMacroSiteSecureScreen.doBuildTemplate(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. Implement this to add information to the context.
protected  void WebMacroSiteSecureScreen.doBuildTemplate(RunData data)
          Deprecated. This method overrides the method in WebMacroSiteScreen to perform a security check first.
protected abstract  boolean WebMacroSiteSecureScreen.isAuthorized(RunData data)
          Deprecated. Implement this method to perform the security check needed.
 

Uses of RunData in org.apache.turbine.modules.screens.error
 

Methods in org.apache.turbine.modules.screens.error with parameters of type RunData
 org.apache.ecs.ConcreteElement InvalidState.doBuild(RunData data)
          Build the Screen.
 

Uses of RunData in org.apache.turbine.services
 

Methods in org.apache.turbine.services with parameters of type RunData
 void TurbineBaseService.init(RunData data)
          Performs early initialization.
 

Uses of RunData in org.apache.turbine.services.freemarker
 

Methods in org.apache.turbine.services.freemarker with parameters of type RunData
 freemarker.template.SimpleHash FreeMarkerService.getContext(RunData data)
          Deprecated. Create a context from the RunData object.
 freemarker.template.SimpleHash TurbineFreeMarkerService.getContext(RunData data)
          Deprecated. Create a context from the RunData object.
 

Constructors in org.apache.turbine.services.freemarker with parameters of type RunData
DynamicURIModel(RunData data)
          Deprecated. Constructor.
SetBodyAttributesModel(RunData data)
          Deprecated. Constructor
AddToHeadModel(RunData data)
          Deprecated. Constructor.
SetTitleModel(RunData data)
          Deprecated. Constructor
AddTemplatesToHeadModel(RunData data)
          Deprecated. Constructor.
NavigationModel(RunData data)
          Deprecated. Constructor
 

Uses of RunData in org.apache.turbine.services.intake.model
 

Fields in org.apache.turbine.services.intake.model declared as RunData
protected  RunData Field.data
          The object containing the request data
protected  RunData Group.data
          The object containing the request data
 

Methods in org.apache.turbine.services.intake.model with parameters of type RunData
 Field Field.init(RunData data)
          Method called when this field (the group it belongs to) is pulled from the pool.
 Field FileItemField.init(RunData data)
          Method called when this field (the group it belongs to) is pulled from the pool.
 Group Group.init(RunData data)
          Initializes the default Group with parameters from RunData.
 Group Group.init(java.lang.String key, RunData data)
          Initializes the Group with parameters from RunData corresponding to key.
 java.util.ArrayList Group.getObjects(RunData data)
          Describe getObjects method here.
 

Uses of RunData in org.apache.turbine.services.jsp
 

Methods in org.apache.turbine.services.jsp with parameters of type RunData
 void JspService.addDefaultObjects(RunData data)
          Adds some useful objects to the request, so they are available to the JSP.
 void JspService.handleRequest(RunData data, java.lang.String templateName, boolean isForward)
          executes the JSP given by templateName.
 void JspService.handleRequest(RunData data, java.lang.String templateName)
          executes the JSP given by templateName.
 void TurbineJspService.addDefaultObjects(RunData data)
          Adds some convenience objects to the request.
 void TurbineJspService.handleRequest(RunData data, java.lang.String filename)
          Process the request
 void TurbineJspService.handleRequest(RunData data, java.lang.String filename, boolean isForward)
          Process the request
 

Uses of RunData in org.apache.turbine.services.jsp.util
 

Constructors in org.apache.turbine.services.jsp.util with parameters of type RunData
JspLink(RunData data)
          Constructor
JspScreenPlaceholder(RunData data)
          Constructor
JspNavigation(RunData data)
          Constructor
 

Uses of RunData in org.apache.turbine.services.localization
 

Methods in org.apache.turbine.services.localization with parameters of type RunData
static java.util.Locale LocaleDetector.getLocale(RunData data)
          Deprecated. Attempts to pull the "Accept-Language" header out of the HttpServletRequest object and then parse it.
static java.lang.String Localization.getString(RunData data, java.lang.String key)
          Deprecated. Call getString(data.getRequest()) instead.
static java.util.ResourceBundle Localization.getBundle(java.lang.String bundleName, RunData data)
          Deprecated. Call getBundle(bundleName, data.getRequest()) instead.
 java.util.ResourceBundle TurbineLocalizationService.getBundle(RunData data)
          This method returns a ResourceBundle given the Locale information supplied in the HTTP "Accept-Language" header which is stored in RunData.
 java.util.ResourceBundle TurbineLocalizationService.getBundle(java.lang.String bundleName, RunData data)
          This method returns a ResourceBundle given the bundle name and the Locale information supplied in the HTTP "Accept-Language" header which is stored in RunData.
 

Uses of RunData in org.apache.turbine.services.logging
 

Methods in org.apache.turbine.services.logging with parameters of type RunData
 void Logger.debug(java.lang.String message, RunData data)
          This is a log metod with logLevel == DEBUG
 void Logger.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == DEBUG
 void Logger.info(java.lang.String message, RunData data)
          This is a log metod with logLevel == INFO
 void Logger.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == INFO
 void Logger.warn(java.lang.String message, RunData data)
          This is a log metod with logLevel == WARN
 void Logger.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == WARN
 void Logger.error(java.lang.String message, RunData data)
          This is a log metod with logLevel == ERROR
 void Logger.error(java.lang.String message, RunData data, java.lang.Throwable e)
          This is a log metod with logLevel == ERROR
 void LoggingService.debug(java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG,printing is done by the default logger
 void LoggingService.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG,printing is done by the default logger
 void LoggingService.debug(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG,printing is done by the given logger
 void LoggingService.debug(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG,printing is done by the given logger
 void LoggingService.info(java.lang.String message, RunData data)
          This is a log method with logLevel == INFO,printing is done by the default logger
 void LoggingService.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO,printing is done by the default logger
 void LoggingService.info(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == INFO,printing is done by the given logger
 void LoggingService.info(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO,printing is done by the given logger
 void LoggingService.warn(java.lang.String message, RunData data)
          This is a log method with logLevel == WARN,printing is done by the default logger
 void LoggingService.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN,printing is done by the default logger
 void LoggingService.warn(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == WARN,printing is done by the given logger
 void LoggingService.warn(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN,printing is done by the given logger
 void LoggingService.error(java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR,printing is done by the default logger
 void LoggingService.error(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR,printing is done by the default logger
 void LoggingService.error(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR,printing is done by the given logger
 void LoggingService.error(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR,printing is done by the given logger
static void TurbineLogging.debug(java.lang.String message, RunData data)
          This is a log metod with logLevel == DEBUG, printing is done by the default logger
static void TurbineLogging.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == DEBUG, printing is done by the default logger
static void TurbineLogging.debug(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == DEBUG, printing is done by the given logger
static void TurbineLogging.debug(java.lang.String logName, java.lang.String message, RunData data)
          This is a log metod with logLevel == DEBUG, printing is done by the given logger
static void TurbineLogging.info(java.lang.String message, RunData data)
          This is a log metod with logLevel == INFO, printing is done by the default logger
static void TurbineLogging.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == INFO, printing is done by the default logger
static void TurbineLogging.info(java.lang.String logName, java.lang.String message, RunData data)
          This is a log metod with logLevel == INFO, printing is done by the given logger
static void TurbineLogging.info(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == INFO, printing is done by the given logger
static void TurbineLogging.warn(java.lang.String message, RunData data)
          This is a log metod with logLevel == WARN, printing is done by the default logger
static void TurbineLogging.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == WARN, printing is done by the default logger
static void TurbineLogging.warn(java.lang.String logName, java.lang.String message, RunData data)
          This is a log metod with logLevel == WARN, printing is done by the given logger
static void TurbineLogging.warn(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == WARN, printing is done by the given logger
static void TurbineLogging.error(java.lang.String message, RunData data)
          This is a log metod with logLevel == ERROR, printing is done by the default logger
static void TurbineLogging.error(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == ERROR, printing is done by the default logger
static void TurbineLogging.error(java.lang.String logName, java.lang.String message, RunData data)
          This is a log metod with logLevel == ERROR, printing is done by the given logger
static void TurbineLogging.error(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == ERROR, printing is done by the given logger
 java.lang.String RunDataFilter.getString(RunData data)
          Extracts data from runData, depending on stored format
 void ServletLogger.debug(java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG
 void ServletLogger.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG
 void ServletLogger.info(java.lang.String message, RunData data)
          This is a log method with logLevel == INFO
 void ServletLogger.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO
 void ServletLogger.warn(java.lang.String message, RunData data)
          This is a log method with logLevel == WARN
 void ServletLogger.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN
 void ServletLogger.error(java.lang.String message, RunData data)
           
 void ServletLogger.error(java.lang.String message, RunData data, java.lang.Throwable e)
           
protected  void ServletLogger.log(int level, java.lang.String message, RunData data, java.lang.Throwable e)
          appends log level to the message
protected  void ServletLogger.logAll(java.lang.String level, java.lang.String description, RunData data, java.lang.Throwable t)
          log message using context log method.
 void TurbineLoggingService.debug(java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG, printing is done by the default logger
 void TurbineLoggingService.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG, printing is done by the default logger
 void TurbineLoggingService.debug(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG, printing is done by the given logger
 void TurbineLoggingService.debug(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG, printing is done by the given logger
 void TurbineLoggingService.info(java.lang.String message, RunData data)
          This is a log method with logLevel == INFO, printing is done by the default logger
 void TurbineLoggingService.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO,printing is done by the default logger
 void TurbineLoggingService.info(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == INFO, printing is done by the given logger
 void TurbineLoggingService.info(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO, printing is done by the given logger
 void TurbineLoggingService.warn(java.lang.String message, RunData data)
          This is a log method with logLevel == WARN,printing is done by the default logger
 void TurbineLoggingService.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN, printing is done by the default logger
 void TurbineLoggingService.warn(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == WARN, printing is done by the given logger
 void TurbineLoggingService.warn(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN, printing is done by the given logger
 void TurbineLoggingService.error(java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR, printing is done by the default logger
 void TurbineLoggingService.error(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR, printing is done by the default logger
 void TurbineLoggingService.error(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR, printing is done by the given logger
 void TurbineLoggingService.error(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR, printing is done by the given logger
 void ServletLoggingService.debug(java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG, printing is done by the default logger
 void ServletLoggingService.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG, printing is done by the default logger
 void ServletLoggingService.debug(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG, printing is done by the given logger
 void ServletLoggingService.debug(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG, printing is done by the given logger
 void ServletLoggingService.info(java.lang.String message, RunData data)
          This is a log method with logLevel == INFO, printing is done by the default logger
 void ServletLoggingService.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO, printing is done by the default logger
 void ServletLoggingService.info(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == INFO, printing is done by the given logger
 void ServletLoggingService.info(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO, printing is done by the given logger
 void ServletLoggingService.warn(java.lang.String message, RunData data)
          This is a log method with logLevel == WARN, printing is done by the default logger
 void ServletLoggingService.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN, printing is done by the default logger
 void ServletLoggingService.warn(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == WARN, printing is done by the given logger
 void ServletLoggingService.warn(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN, printing is done by the given logger
 void ServletLoggingService.error(java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR, printing is done by the default logger
 void ServletLoggingService.error(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR, printing is done by the default logger
 void ServletLoggingService.error(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR, printing is done by the given logger
 void ServletLoggingService.error(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR, printing is done by the given logger
 void Log4JavaLogger.debug(java.lang.String message, RunData data)
          This is a log metod with logLevel == DEBUG
 void Log4JavaLogger.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == DEBUG
 void Log4JavaLogger.info(java.lang.String message, RunData data)
          This is a log metod with logLevel == INFO
 void Log4JavaLogger.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == INFO
 void Log4JavaLogger.warn(java.lang.String message, RunData data)
          This is a log metod with logLevel == WARN
 void Log4JavaLogger.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == WARN
 void Log4JavaLogger.error(java.lang.String message, RunData data)
          This is a log metod with logLevel == ERROR
 void Log4JavaLogger.error(java.lang.String message, RunData data, java.lang.Throwable e)
          This is a log metod with logLevel == ERROR
 java.lang.String BaseRunDataFilter.getString(RunData data)
          For each field in tha pattern looking for method extracting data from RunData, invokes the method, and adds return value to return value.
 void FileLogger.debug(java.lang.String message, RunData data)
          This is a log metod with logLevel == DEBUG
 void FileLogger.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == DEBUG
 void FileLogger.info(java.lang.String message, RunData data)
          This is a log metod with logLevel == INFO
 void FileLogger.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == INFO
 void FileLogger.warn(java.lang.String message, RunData data)
          This is a log metod with logLevel == WARN
 void FileLogger.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log metod with logLevel == WARN
 void FileLogger.error(java.lang.String message, RunData data)
           
 void FileLogger.error(java.lang.String message, RunData data, java.lang.Throwable e)
           
protected  void FileLogger.log(int level, java.lang.String message, RunData data, java.lang.Throwable e)
          Checks if logging is allowed and appends loglevel message
protected  void FileLogger.logAll(java.lang.String level, java.lang.String description, RunData data, java.lang.Throwable t)
          log message to all open loging files
 

Uses of RunData in org.apache.turbine.services.naming
 

Methods in org.apache.turbine.services.naming with parameters of type RunData
 void TurbineNamingService.init(RunData data)
          Places the contexts defined in the TurbineResources instance (if any) into the data.contexts Hashtable.
 

Uses of RunData in org.apache.turbine.services.pull
 

Methods in org.apache.turbine.services.pull with parameters of type RunData
static void TurbinePull.populateContext(org.apache.velocity.context.Context context, RunData data)
          Populate the given context with all request, session and persistent scope tools (it is assumed that the context already wraps the global context, and thus already contains the global tools).
 void PullService.populateContext(org.apache.velocity.context.Context context, RunData data)
          Populate the given context with all request, session and persistent scope tools (it is assumed that the context already wraps the global context, and thus already contains the global tools).
 void TurbinePullService.populateContext(org.apache.velocity.context.Context context, RunData data)
          Populate the given context with all request, session and persistent scope tools (it is assumed that the context already wraps the global context, and thus already contains the global tools).
 

Uses of RunData in org.apache.turbine.services.pull.util
 

Methods in org.apache.turbine.services.pull.util with parameters of type RunData
 java.lang.String UIManager.image(java.lang.String imageId, RunData data)
          Retrieve the URL for an image that is part of a skin.
 java.lang.String UIManager.getStylecss(RunData data)
          Retrieve the URL for the style sheet that is part of a skin.
protected  void UIManager.setSkin(RunData data)
          Set the skin name when the tool is configured to be loaded on a per-request basis.
 

Uses of RunData in org.apache.turbine.services.rundata
 

Subinterfaces of RunData in org.apache.turbine.services.rundata
 interface TurbineRunData
          TurbineRunData is an extension to the RunData interface to be implemented by RunData implementations to be distributed by the Turbine RunData Service.
 

Classes in org.apache.turbine.services.rundata that implement RunData
 class DefaultTurbineRunData
          DefaultTurbineRunData is the default implementation of the TurbineRunData interface, which is distributed by the Turbine RunData service, if another implementation is not defined in the default or specified RunData configuration.
 

Methods in org.apache.turbine.services.rundata that return RunData
 RunData TurbineRunDataService.getRunData(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, javax.servlet.ServletConfig config)
          Gets a default RunData object.
 RunData TurbineRunDataService.getRunData(java.lang.String key, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, javax.servlet.ServletConfig config)
          Gets a RunData instance from a specific configuration.
 RunData RunDataService.getRunData(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, javax.servlet.ServletConfig config)
          Gets a default RunData object.
 RunData RunDataService.getRunData(java.lang.String key, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, javax.servlet.ServletConfig config)
          Gets a RunData object from a specific configuration.
 

Methods in org.apache.turbine.services.rundata with parameters of type RunData
 boolean TurbineRunDataService.putRunData(RunData data)
          Puts the used RunData object back to the factory for recycling.
 boolean RunDataService.putRunData(RunData data)
          Puts the used RunData object back to the factory for recycling.
 

Uses of RunData in org.apache.turbine.services.template
 

Methods in org.apache.turbine.services.template with parameters of type RunData
 java.lang.String TurbineTemplateService.getDefaultPageName(RunData data)
          Find the default page module name for the given request.
 java.lang.String TurbineTemplateService.getDefaultLayoutName(RunData data)
          Find the default layout module name for the given request.
static java.lang.String TurbineTemplate.getDefaultPageName(RunData data)
           
static java.lang.String TurbineTemplate.getDefaultLayoutName(RunData data)
           
 java.lang.String TemplateService.getDefaultPageName(RunData data)
          Find the default page module name for the given request.
 java.lang.String TemplateService.getDefaultLayoutName(RunData data)
          Find the default layout module name for the given request.
 

Uses of RunData in org.apache.turbine.services.uniqueid
 

Methods in org.apache.turbine.services.uniqueid with parameters of type RunData
 void TurbineUniqueIdService.init(RunData data)
           Initializes the service upon first Turbine.doGet() invocation.
 

Uses of RunData in org.apache.turbine.services.velocity
 

Methods in org.apache.turbine.services.velocity with parameters of type RunData
 org.apache.velocity.context.Context VelocityService.getContext(RunData data)
          Create a Context from the RunData object.
static org.apache.velocity.context.Context TurbineVelocity.getContext(RunData data)
          This returns a Context that you can pass into handleRequest once you have populated it with information that the template will know about.
 org.apache.velocity.context.Context TurbineVelocityService.getContext(RunData data)
          Create a Context from the RunData object.
 

Uses of RunData in org.apache.turbine.services.webmacro
 

Methods in org.apache.turbine.services.webmacro with parameters of type RunData
 org.webmacro.servlet.WebContext WebMacroService.getContext(RunData data)
          Deprecated. Create a WebContext from the RunData object.
 org.webmacro.servlet.WebContext TurbineWebMacroService.getContext(RunData data)
          Deprecated. Create a WebContext from the RunData object.
static org.webmacro.servlet.WebContext TurbineWebMacro.getContext(RunData data)
          Deprecated. This returns a WebContext that you can pass into handleRequest once you have populated it with information that the template will know about.
 

Uses of RunData in org.apache.turbine.util
 

Fields in org.apache.turbine.util declared as RunData
protected  RunData DynamicURI.data
          The RunData object.
 

Methods in org.apache.turbine.util that return RunData
static RunData RunDataFactory.getRunData(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, javax.servlet.ServletConfig config)
          Open way to get RunData information across Turbine..
 RunData CookieParser.getRunData()
          Gets the parsed RunData.
 

Methods in org.apache.turbine.util with parameters of type RunData
 void DynamicURI.init(RunData data)
          Initialize with a RunData object
static java.lang.String DynamicURI.toString(RunData data)
          Given a RunData object, get a URI for the request.
static void RunDataFactory.putRunData(RunData data)
          Returns the used RunData object back to the factory for recycling.
 void CookieParser.setRunData(RunData data)
          Sets the RunData to be parsed.
static void Log.debug(java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG, printing is done by the default logger
static void Log.debug(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG, printing is done by the default logger
static void Log.debug(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == DEBUG, printing is done by the given logger
static void Log.debug(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == DEBUG, printing is done by the given logger
static void Log.info(java.lang.String message, RunData data)
          This is a log method with logLevel == INFO, printing is done by the default logger
static void Log.info(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO, printing is done by the default logger
static void Log.info(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == INFO, printing is done by the given logger
static void Log.info(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == INFO, printing is done by the given logger
static void Log.warn(java.lang.String message, RunData data)
          This is a log method with logLevel == WARN, printing is done by the default logger
static void Log.warn(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN, printing is done by the default logger
static void Log.warn(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == WARN, printing is done by the given logger
static void Log.warn(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == WARN, printing is done by the given logger
static void Log.error(java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR, printing is done by the default logger
static void Log.error(java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR, printing is done by the default logger
static void Log.error(java.lang.String logName, java.lang.String message, RunData data)
          This is a log method with logLevel == ERROR, printing is done by the given logger
static void Log.error(java.lang.String logName, java.lang.String message, RunData data, java.lang.Throwable t)
          This is a log method with logLevel == ERROR, printing is done by the given logger
static void HttpUtils.setCacheHeaders(RunData data, int expiry)
          This method sets the required expiration headers in the response for a given RunData object.
static java.lang.String RelativeDynamicURI.toString(RunData data)
          Given a RunData object, get a relative URI for the request.
 void ContentURI.init(RunData data)
          Initialize this object using the given RunData object
 void TurbineConfig.init(RunData data)
          Initialization requiring a HTTP GET request.
 

Constructors in org.apache.turbine.util with parameters of type RunData
DynamicURI(RunData data)
          Constructor sets up some variables.
DynamicURI(RunData data, java.lang.String screen)
          Constructor sets up some variables.
DynamicURI(RunData data, java.lang.String screen, java.lang.String action)
          Constructor sets up some variables.
DynamicURI(RunData data, java.lang.String screen, java.lang.String action, boolean redirect)
          Constructor sets up some variables.
DynamicURI(RunData data, java.lang.String screen, boolean redirect)
          Constructor sets up some variables.
DynamicURI(RunData data, boolean redirect)
          Constructor sets up some variables.
SecurityCheck(RunData data, java.lang.String message, java.lang.String failedScreen)
          Constructor.
RelativeDynamicURI(RunData data)
          Constructor sets up some variables.
RelativeDynamicURI(RunData data, java.lang.String screen)
          Constructor sets up some variables.
RelativeDynamicURI(RunData data, java.lang.String screen, java.lang.String action)
          Constructor sets up some variables.
RelativeDynamicURI(RunData data, java.lang.String screen, java.lang.String action, boolean redirect)
          Constructor sets up some variables.
RelativeDynamicURI(RunData data, java.lang.String screen, boolean redirect)
          Constructor sets up some variables.
RelativeDynamicURI(RunData data, boolean redirect)
          Constructor sets up some variables.
BrowserDetector(RunData data)
          Constructor used to initialize this class.
ContentURI(RunData data)
          Constructor
 

Uses of RunData in org.apache.turbine.util.parser
 

Methods in org.apache.turbine.util.parser that return RunData
 RunData DefaultCookieParser.getRunData()
          Gets the parsed RunData.
 

Methods in org.apache.turbine.util.parser with parameters of type RunData
 void DefaultCookieParser.setRunData(RunData data)
          Sets the RunData to be parsed.
 

Uses of RunData in org.apache.turbine.util.template
 

Constructors in org.apache.turbine.util.template with parameters of type RunData
TemplateNavigation(RunData data)
          Constructor
TemplateSecurityCheck(RunData data, java.lang.String message)
          Constructor.
TemplateSecurityCheck(RunData data)
          Generic Constructor.
TemplateScreen(RunData data)
          Constructor
TemplateLink(RunData data)
          Constructor.
TemplateLinkWithSlash(RunData data)
          Constructor.
TemplateInfo(RunData data)
          Constructor
TemplatePageAttributes(RunData data)
          Construct a new instance with the given RunData object.
RelativeTemplateLink(RunData data)
          Constructor.
 

Uses of RunData in org.apache.turbine.util.upload
 

Constructors in org.apache.turbine.util.upload with parameters of type RunData
FileHandler(RunData data, java.lang.String root)
          Deprecated. Use TurbineUploadService counterpart FileItem.
FileHandler(RunData data)
          Deprecated. Use TurbineUploadService counterpart FileItem.
 

Uses of RunData in org.apache.turbine.util.velocity
 

Methods in org.apache.turbine.util.velocity with parameters of type RunData
abstract  void VelocityActionEvent.doPerform(RunData data)
          You need to implement this in your classes that extend this class.
protected  void VelocityActionEvent.perform(RunData data)
          This overrides the default Action.perform() to execute the doEvent() method.
 void VelocityActionEvent.executeEvents(RunData data, org.apache.velocity.context.Context context)
          This method should be called to execute the event based system.
 

Constructors in org.apache.turbine.util.velocity with parameters of type RunData
VelocityHtmlEmail(RunData data)
          Constructor, sets the RunData object.
 

Uses of RunData in org.apache.turbine.util.webmacro
 

Methods in org.apache.turbine.util.webmacro with parameters of type RunData
abstract  void WebMacroActionEvent.doPerform(RunData data)
          Deprecated. You need to implement this in your classes that extend this class.
protected  void WebMacroActionEvent.perform(RunData data)
          Deprecated. This overrides the default Action.perform() to execute the doEvent() method.
 void WebMacroActionEvent.executeEvents(RunData data, org.webmacro.servlet.WebContext context)
          Deprecated. This method should be called to execute the event based system.
 



Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.