|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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). |
private void |
Turbine.handleException(RunData data,
javax.servlet.http.HttpServletResponse res,
java.lang.Throwable t)
This method is about making sure that we catch and display errors to the screen in one fashion or another. |
Uses of RunData in org.apache.turbine.modules |
Methods in org.apache.turbine.modules with parameters of type RunData | |
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. |
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. |
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. |
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. |
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. |
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. |
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)
You SHOULD NOT override this method and implement it in your action. |
abstract void |
WebMacroSiteAction.doPerform(RunData data,
org.webmacro.servlet.WebContext context)
You SHOULD override this method and implement it in your action. |
protected void |
WebMacroSiteAction.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 |
WebMacroSiteAction.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.webmacro.servlet.WebContext |
WebMacroSiteAction.getContext(RunData data)
Return the WebContext needed by WebMacro. |
abstract void |
WebMacroSiteSecureAction.doPerform(RunData data,
org.webmacro.servlet.WebContext context)
Implement this to add information to the context. |
protected void |
WebMacroSiteSecureAction.perform(RunData data)
This method overrides the method in WebMacroSiteAction to perform a security check first. |
protected abstract boolean |
WebMacroSiteSecureAction.isAuthorized(RunData data)
Implement this method to perform the security check needed. |
void |
LogoutUser.doPerform(RunData data)
Execute the action. |
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 |
LoginUser.doPerform(RunData data)
Execute the action. |
void |
DefaultAction.doPerform(RunData data)
Execute the action. |
void |
AccessController.doPerform(RunData data)
Execute the action. |
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 | |
abstract boolean |
SessionValidator.requiresNewSession(RunData data)
Inform whether we require a new session in order to allow people to access the system. |
void |
DefaultSessionValidator.doPerform(RunData data)
Execute the action. |
boolean |
DefaultSessionValidator.requiresNewSession(RunData data)
By default, this is true. |
void |
TemplateSessionValidator.doPerform(RunData data)
Execute the action. |
boolean |
TemplateSessionValidator.requiresNewSession(RunData data)
By default, this is true. |
void |
TemplateSecureSessionValidator.doPerform(RunData data)
Execute the action. |
boolean |
TemplateSecureSessionValidator.requiresNewSession(RunData data)
By default, this is true. |
Uses of RunData in org.apache.turbine.modules.layouts |
Methods in org.apache.turbine.modules.layouts with parameters of type RunData | |
void |
WebMacroOnlyLayout.doBuild(RunData data)
Method called by LayoutLoader. |
protected org.webmacro.servlet.WebContext |
WebMacroOnlyLayout.getContext(RunData data)
Return the WebContext needed by WebMacro. |
void |
WebMacroSiteLayout.doBuild(RunData data)
Build the layout. |
protected org.webmacro.servlet.WebContext |
WebMacroSiteLayout.getContext(RunData data)
Return the WebContext needed by WebMacro. |
void |
VelocityOnlyLayout.doBuild(RunData data)
Method called by LayoutLoader. |
void |
VelocityXslLayout.doBuild(RunData data)
Method called by LayoutLoader. |
void |
VelocityECSLayout.doBuild(RunData data)
Build the layout. |
void |
JspLayout.doBuild(RunData data)
Method called by LayoutLoader. |
void |
DefaultLayout.doBuild(RunData data)
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)
Build the Navigation. |
protected void |
WebMacroSiteNavigation.doBuildTemplate(RunData data,
org.webmacro.servlet.WebContext context)
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)
Needs to be implemented to make TemplateNavigation like us. |
org.apache.ecs.ConcreteElement |
WebMacroSiteNavigation.buildTemplate(RunData data)
This Builds the WebMacro template. |
protected org.webmacro.servlet.WebContext |
WebMacroSiteNavigation.getContext(RunData data)
Return the WebContext needed by WebMacro. |
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 |
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. |
org.apache.ecs.ConcreteElement |
DefaultBottomNavigation.doBuild(RunData data)
Build the Navigation. |
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. |
private void |
DefaultPage.setDefaultDoctype(RunData data)
Set the default Doctype. |
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)
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)
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)
Needs to be implemented to make TemplateScreen like us. |
org.apache.ecs.ConcreteElement |
WebMacroSiteScreen.buildTemplate(RunData data)
This builds the WebMacro template. |
static org.webmacro.servlet.WebContext |
WebMacroSiteScreen.getContext(RunData data)
Return the WebContext needed by WebMacro. |
protected void |
WebMacroSiteErrorScreen.doBuildTemplate(RunData data,
org.webmacro.servlet.WebContext context)
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)
|
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 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)
Implement this to add information to the context. |
protected void |
WebMacroSiteSecureScreen.doBuildTemplate(RunData data)
This method overrides the method in WebMacroSiteScreen to perform a security check first. |
protected abstract boolean |
WebMacroSiteSecureScreen.isAuthorized(RunData data)
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.intake |
Fields in org.apache.turbine.services.intake declared as RunData | |
private RunData |
IntakeTool.data
|
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. |
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 |
Fields in org.apache.turbine.services.jsp.util declared as RunData | |
private RunData |
JspScreenPlaceholder.data
|
private RunData |
JspNavigation.data
|
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)
Attempts to pull the "Accept-Language" header out of the HttpServletRequest object and then parse it. |
java.util.ResourceBundle |
LocalizationService.getBundle(RunData data)
Convenience method to get a ResourceBundle based on HTTP Accept-Language header in RunData. |
java.util.ResourceBundle |
LocalizationService.getBundle(java.lang.String bundleName,
RunData data)
Convenience method to get a ResourceBundle based on name and HTTP Accept-Language header in RunData. |
static java.lang.String |
Localization.getString(RunData data,
java.lang.String str)
Pulls a string out of the LocalizationService and attempts to determine the Locale by the Accept-Language header. |
static java.util.ResourceBundle |
Localization.getBundle(java.lang.String bundleName,
RunData data)
Convenience method to get a ResourceBundle based on name and HTTP Accept-Language header in RunData. |
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 |
private void |
Log4JavaLogger.log(int level,
java.lang.String message,
RunData data,
java.lang.Throwable e)
Creates new loging message form message and RunData, and sends it to the category. |
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. |
private static java.lang.String |
BaseRunDataFilter.getTime(RunData data)
Retrives current system time. |
private static java.lang.String |
BaseRunDataFilter.getURLRequested(RunData data)
Retrives the url requested by the client |
private static java.lang.String |
BaseRunDataFilter.getRemoteHost(RunData data)
Retrives remote host name. |
private static java.lang.String |
BaseRunDataFilter.getRemoteAddr(RunData data)
Retrives remote host address. |
private static java.lang.String |
BaseRunDataFilter.getRemoteUser(RunData data)
Retrives the login of the user making this request, if the user has been authenticated, or null if the user has not been authenticated. |
private static java.lang.String |
BaseRunDataFilter.getServerPort(RunData data)
Retrives the cached serverPort that is stored in the ServerData object |
private static java.lang.String |
BaseRunDataFilter.getServerName(RunData data)
Retrives the cached serverName that is stored in the ServerData object |
private static java.lang.String |
BaseRunDataFilter.getMethod(RunData data)
Retrives the cached method that is stored in the ServerData object |
private static java.lang.String |
BaseRunDataFilter.getHeader(RunData data,
java.lang.String symbol)
Retrives the value of the specified request header. |
private static java.lang.String |
BaseRunDataFilter.getQueryString(RunData data)
Retrives the query string that is contained in the request URL after the path. |
private static java.lang.String |
BaseRunDataFilter.getContextPath(RunData data)
Retrives the portion of the request URI that indicates the context of the request. |
private static java.lang.String |
BaseRunDataFilter.getSessionId(RunData data)
Retrives a string containing the unique identifier assigned to this session |
private static java.lang.String |
BaseRunDataFilter.getAuthType(RunData data)
Retrives the name of the authentication scheme used to protect the servlet, for example, "BASIC" or "SSL," or null if the servlet was not protected. |
private static java.lang.String |
BaseRunDataFilter.getContentType(RunData data)
Retrives the MIME type of the body of the request, or null if the type is not known. |
private static java.lang.String |
BaseRunDataFilter.getCharacterEncoding(RunData data)
Retrives the name of the character encoding used in the body of this request. |
private static java.lang.String |
BaseRunDataFilter.getProtocol(RunData data)
Retrives the name and version of the protocol the request uses in the form protocol/majorVersion.minorVersion |
private static java.lang.String |
BaseRunDataFilter.getScheme(RunData data)
Retrives the name of the scheme used to make this request, for example, http, https, or ftp. |
private static java.lang.String |
BaseRunDataFilter.getContentLength(RunData data)
Retrives the length, in bytes, of the request body and made available by the input stream, or -1 if the length is not known. |
private static java.lang.String |
BaseRunDataFilter.getUserAgent(RunData data)
Retrives the user agent name. |
private static java.lang.String |
BaseRunDataFilter.getBannerInfo(RunData data)
Retrives the banner info asociated with the user making the request. |
private static java.lang.String |
BaseRunDataFilter.getUser(RunData data)
Retrives first and last name of the user making the request. |
private static java.lang.String |
BaseRunDataFilter.getCookies(RunData data)
Retrives cookies. |
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). |
private void |
TurbinePullService.populateWithRequestTools(org.apache.velocity.context.Context context,
RunData data)
Populate the given context with the request-scope tools |
private void |
TurbinePullService.populateWithSessionTools(java.util.List tools,
org.apache.velocity.context.Context context,
RunData data,
boolean usePerm)
Populate the given context with the session-scope 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.servlet |
Methods in org.apache.turbine.services.servlet with parameters of type RunData | |
void |
TurbineServletService.init(RunData data)
Setup some standard information about our webapp that may be of use in other classes of our webapp that do not have direct access to the RunData class. |
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)
Create a WebContext from the RunData object. |
org.webmacro.servlet.WebContext |
TurbineWebMacroService.getContext(RunData data)
Create a WebContext from the RunData
object. |
static org.webmacro.servlet.WebContext |
TurbineWebMacro.getContext(RunData data)
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. |
private RunData |
SecurityCheck.data
|
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. |
|
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. |
|
SecurityCheck(RunData data,
java.lang.String message,
java.lang.String failedScreen)
Constructor. |
|
BrowserDetector(RunData data)
Constructor used to initialize this class. |
|
ContentURI(RunData data)
Constructor |
Uses of RunData in org.apache.turbine.util.parser |
Fields in org.apache.turbine.util.parser declared as RunData | |
private RunData |
DefaultCookieParser.data
The run data to parse. |
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 |
Fields in org.apache.turbine.util.template declared as RunData | |
private RunData |
TemplatePageAttributes.data
The RunData object. |
private RunData |
TemplateInfo.data
|
private RunData |
TemplateSecurityCheck.data
|
private RunData |
TemplateNavigation.data
|
Constructors in org.apache.turbine.util.template with parameters of type RunData | |
TemplatePageAttributes(RunData data)
Construct a new instance with the given RunData object. |
|
TemplateInfo(RunData data)
Constructor |
|
TemplateSecurityCheck(RunData data,
java.lang.String message)
Constructor. |
|
TemplateSecurityCheck(RunData data)
Generic Constructor. |
|
TemplateLink(RunData data)
Constructor. |
|
TemplateNavigation(RunData data)
Constructor |
|
TemplateLinkWithSlash(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 |
Fields in org.apache.turbine.util.velocity declared as RunData | |
private RunData |
VelocityHtmlEmail.data
The cached rundata object. |
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. |
private static org.apache.velocity.context.Context |
VelocityHtmlEmail.getContext(RunData data)
Return the Context needed by Velocity. |
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)
You need to implement this in your classes that extend this class. |
protected void |
WebMacroActionEvent.perform(RunData data)
This overrides the default Action.perform() to execute the doEvent() method. |
void |
WebMacroActionEvent.executeEvents(RunData data,
org.webmacro.servlet.WebContext context)
This method should be called to execute the event based system. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |