|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RunData | |
org.apache.turbine | Turbine Servlet and Constants. |
org.apache.turbine.modules | Modules (Action, Screen, Layout, Navigation, Page) classes for the Turbine view. |
org.apache.turbine.modules.actions | Action class implementations. |
org.apache.turbine.modules.actions.sessionvalidator | Session validator classes to be used with Turbine apps that use security. |
org.apache.turbine.modules.layouts | Layout class implementations. |
org.apache.turbine.modules.navigations | Navigation class implementations. |
org.apache.turbine.modules.pages | Page class implementations. |
org.apache.turbine.modules.screens | Screen class implementations. |
org.apache.turbine.modules.screens.error | Error Screen classes. |
org.apache.turbine.services | Contains the Service framework for Turbine. |
org.apache.turbine.services.jsp | JSP Service is used to provide Turbine with a Java Server page (JSP) based view. |
org.apache.turbine.services.jsp.util | |
org.apache.turbine.services.localization | This service provides access and tools for multilingual applications in Turbine. |
org.apache.turbine.services.naming | Naming Service provides access to JNDI naming contexts. |
org.apache.turbine.services.pull | Provides application tools that are put into the context of a template view. |
org.apache.turbine.services.pull.util | |
org.apache.turbine.services.rundata | Rundata Service provides a factory for the request cycle data objects. |
org.apache.turbine.services.template | Template Service maps template references to a view service and a template name. |
org.apache.turbine.services.uniqueid | Returns unique identifiers for session tracking, cookies etc. |
org.apache.turbine.services.velocity | Velocity Service is used to provide Turbine with a Velocity based view. |
org.apache.turbine.util | Various utilities used in Turbine and for Turbine based applications. |
org.apache.turbine.util.parser | Parser for CGI parameters and path info data. |
org.apache.turbine.util.template | Template related utilities. |
org.apache.turbine.util.uri | URI generation and processing from Turbine based applications. |
org.apache.turbine.util.velocity | Velocity related utility code. |
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 | |
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 |
ScheduledJobLoader.exec(RunData data,
java.lang.String name)
Attempts to load and execute the external ScheduledJob. |
void |
LayoutLoader.exec(RunData data,
java.lang.String name)
Attempts to load and execute the external layout. |
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. |
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 |
PageLoader.exec(RunData data,
java.lang.String name)
Attempts to load and execute the external page. |
abstract void |
GenericLoader.exec(RunData data,
java.lang.String name)
Attempts to load and execute the external action that has been set. |
void |
ActionLoader.exec(RunData data,
java.lang.String name)
Attempts to load and execute the external action. |
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 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. |
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 |
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 |
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. |
Uses of RunData in org.apache.turbine.modules.actions |
Methods in org.apache.turbine.modules.actions with parameters of type RunData | |
void |
InitContextsAction.doPerform(RunData data)
This action will place the contexts defined in the TurbineResources instance (if any) into the data.contexts Hashtable. |
void |
DefaultAction.doPerform(RunData data)
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 |
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. |
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 |
LogoutUser.doPerform(RunData data)
Clears the RunData user object back to an anonymous status not logged in, and with a null ACL. |
void |
AccessController.doPerform(RunData data)
If there is a user and the user is logged in, doPerform will set the RunData ACL. |
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 |
JspLayout.doBuild(RunData data)
Method called by LayoutLoader. |
void |
VelocityECSLayout.doBuild(RunData data)
Deprecated. Build the layout. |
void |
VelocityXslLayout.doBuild(RunData data)
Build the layout. |
void |
DefaultLayout.doBuild(RunData data)
Deprecated. Build the layout. |
void |
DirectResponseLayout.doBuild(RunData data)
Ensures that a direct response has been declared. |
void |
VelocityDirectLayout.doBuild(RunData data)
Method called by LayoutLoader. |
void |
VelocityOnlyLayout.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 void |
BaseJspNavigation.doBuildTemplate(RunData data)
Method to be overidden by subclasses to include data in beans, etc. |
org.apache.ecs.ConcreteElement |
BaseJspNavigation.buildTemplate(RunData data)
Method that sets up beans and forward the request to the JSP. |
org.apache.ecs.ConcreteElement |
DefaultBottomNavigation.doBuild(RunData data)
Deprecated. Build the Navigation. |
org.apache.ecs.ConcreteElement |
DefaultTopNavigation.doBuild(RunData data)
Deprecated. Build the Navigation. |
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(). |
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. |
Uses of RunData in org.apache.turbine.modules.pages |
Methods in org.apache.turbine.modules.pages with parameters of type RunData | |
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. |
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 |
JspPage.doBuildBeforeAction(RunData data)
Stuffs some useful objects into the request so that it is available to the Action module and the Screen module |
Uses of RunData in org.apache.turbine.modules.screens |
Methods in org.apache.turbine.modules.screens with parameters of type RunData | |
org.apache.ecs.ConcreteElement |
Error.doBuild(RunData data)
Build screen. |
protected void |
VelocityErrorScreen.doBuildTemplate(RunData data,
org.apache.velocity.context.Context context)
Implement this to add information to the context. |
protected void |
JspErrorScreen.doBuildTemplate(RunData data)
|
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. |
org.apache.ecs.ConcreteElement |
VelocityDirectScreen.buildTemplate(RunData data)
This builds the Velocity template. |
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 |
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)
Deprecated. Use TurbineVelocity.getContext(data) |
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 VelocityScreen to perform a security check first. |
protected abstract boolean |
VelocitySecureScreen.isAuthorized(RunData data)
Implement this method to perform the security check needed. |
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. |
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.jsp |
Methods in org.apache.turbine.services.jsp with parameters of type RunData | |
static void |
TurbineJsp.addDefaultObjects(RunData data)
Adds some convenience objects to the request. |
static void |
TurbineJsp.handleRequest(RunData data,
java.lang.String templateName,
boolean isForward)
executes the JSP given by templateName. |
static void |
TurbineJsp.handleRequest(RunData data,
java.lang.String templateName)
executes the JSP given by templateName. |
void |
JspService.addDefaultObjects(RunData data)
Adds some convenience objects to the request. |
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 templateName)
executes the JSP given by templateName. |
void |
TurbineJspService.handleRequest(RunData data,
java.lang.String templateName,
boolean isForward)
executes the JSP given by templateName. |
Uses of RunData in org.apache.turbine.services.jsp.util |
Constructors in org.apache.turbine.services.jsp.util with parameters of type RunData | |
JspNavigation(RunData data)
Constructor |
|
JspLink(RunData data)
Constructor |
|
JspScreenPlaceholder(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(key, 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.naming |
Methods in org.apache.turbine.services.naming with parameters of type RunData | |
void |
TurbineNamingService.init(RunData data)
Deprecated. This should never have been here. No replacement. |
Uses of RunData in org.apache.turbine.services.pull |
Methods in org.apache.turbine.services.pull with parameters of type RunData | |
void |
RunDataApplicationTool.refresh(RunData data)
Refresh the application tool. |
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 |
TurbinePullService.populateContext(org.apache.velocity.context.Context context,
RunData data)
Populate the given context with all request, session, authorized 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, authorized 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. |
java.lang.String |
UIManager.getScript(java.lang.String filename,
RunData data)
Retrieve the URL for a given script 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. |
static RunData |
TurbineRunDataFacade.getRunData(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res,
javax.servlet.ServletConfig config)
Gets a default RunData object. |
static RunData |
TurbineRunDataFacade.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. |
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. |
static boolean |
TurbineRunDataFacade.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 | |
static java.lang.String |
TurbineTemplate.getDefaultPageName(RunData data)
Find the default page module name for the given request. |
static java.lang.String |
TurbineTemplate.getDefaultLayoutName(RunData data)
Find the default layout module name for the given request. |
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. |
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. |
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)
Deprecated. Use init() instead |
Uses of RunData in org.apache.turbine.services.velocity |
Methods in org.apache.turbine.services.velocity with parameters of type RunData | |
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. |
org.apache.velocity.context.Context |
VelocityService.getContext(RunData data)
Create a Context from the RunData object. |
Uses of RunData in org.apache.turbine.util |
Fields in org.apache.turbine.util declared as RunData | |
protected RunData |
DynamicURI.data
Deprecated. 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)
Deprecated. Open way to get RunData information across Turbine.. |
Methods in org.apache.turbine.util with parameters of type RunData | |
void |
ContentURI.init(RunData data)
Deprecated. Initialize this object using the given RunData object |
static void |
RunDataFactory.putRunData(RunData data)
Deprecated. Returns the used RunData object back to the factory for recycling. |
static void |
HttpUtils.setCacheHeaders(RunData data,
int expiry)
This method sets the required expiration headers in the response for a given RunData object. |
void |
TurbineConfig.init(RunData data)
Initialization requiring a HTTP GET request. |
static java.lang.String |
RelativeDynamicURI.toString(RunData data)
Deprecated. Given a RunData object, get a relative URI for the request. |
void |
DynamicURI.init(RunData data)
Deprecated. Initialize with a RunData object |
static java.lang.String |
DynamicURI.toString(RunData data)
Deprecated. Given a RunData object, get a URI for the request. |
Constructors in org.apache.turbine.util with parameters of type RunData | |
ContentURI(RunData data)
Deprecated. Constructor |
|
SecurityCheck(RunData data,
java.lang.String message,
java.lang.String failedScreen)
Constructor. |
|
BrowserDetector(RunData data)
Constructor used to initialize this class. |
|
RelativeDynamicURI(RunData data)
Deprecated. Constructor sets up some variables. |
|
RelativeDynamicURI(RunData data,
java.lang.String screen)
Deprecated. Constructor sets up some variables. |
|
RelativeDynamicURI(RunData data,
java.lang.String screen,
java.lang.String action)
Deprecated. Constructor sets up some variables. |
|
RelativeDynamicURI(RunData data,
java.lang.String screen,
java.lang.String action,
boolean redirect)
Deprecated. Constructor sets up some variables. |
|
RelativeDynamicURI(RunData data,
java.lang.String screen,
boolean redirect)
Deprecated. Constructor sets up some variables. |
|
RelativeDynamicURI(RunData data,
boolean redirect)
Deprecated. Constructor sets up some variables. |
|
DynamicURI(RunData data)
Deprecated. Constructor sets up some variables. |
|
DynamicURI(RunData data,
java.lang.String screen)
Deprecated. Constructor sets up some variables. |
|
DynamicURI(RunData data,
java.lang.String screen,
java.lang.String action)
Deprecated. Constructor sets up some variables. |
|
DynamicURI(RunData data,
java.lang.String screen,
java.lang.String action,
boolean redirect)
Deprecated. Constructor sets up some variables. |
|
DynamicURI(RunData data,
java.lang.String screen,
boolean redirect)
Deprecated. Constructor sets up some variables. |
|
DynamicURI(RunData data,
boolean redirect)
Deprecated. Constructor sets up some variables. |
Uses of RunData in org.apache.turbine.util.parser |
Methods in org.apache.turbine.util.parser that return RunData | |
RunData |
DefaultCookieParser.getRunData()
Deprecated. Don't use the Run Data object. use getRequest(). |
RunData |
CookieParser.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. |
void |
CookieParser.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 | |
TemplateLinkWithSlash(RunData data)
Deprecated. Constructor. |
|
HtmlPageAttributes(RunData data)
Construct a new instance with the given RunData object. |
|
TemplateScreen(RunData data)
Constructor |
|
TemplateNavigation(RunData data)
Constructor |
|
TemplateLink(RunData data)
Deprecated. Constructor. |
|
TemplateSecurityCheck(RunData data,
java.lang.String message)
Constructor. |
|
TemplateSecurityCheck(RunData data)
Generic Constructor. |
|
RelativeTemplateLink(RunData data)
Deprecated. Constructor. |
|
TemplatePageAttributes(RunData data)
Deprecated. Construct a new instance with the given RunData object. |
|
TemplateInfo(RunData data)
Constructor |
Uses of RunData in org.apache.turbine.util.uri |
Constructors in org.apache.turbine.util.uri with parameters of type RunData | |
DataURI(RunData runData)
Constructor with a RunData object |
|
DataURI(RunData runData,
boolean redirect)
Constructor, set explicit redirection |
|
BaseURI(RunData runData)
Constructor with a RunData object |
|
BaseURI(RunData runData,
boolean redirect)
Constructor, set explicit redirection |
|
TurbineURI(RunData runData)
Constructor with a RunData object. |
|
TurbineURI(RunData runData,
boolean redirect)
Constructor, set explicit redirection. |
|
TurbineURI(RunData runData,
java.lang.String screen)
Constructor, set Screen. |
|
TurbineURI(RunData runData,
java.lang.String screen,
boolean redirect)
Constructor, set Screen, set explicit redirection. |
|
TurbineURI(RunData runData,
java.lang.String screen,
java.lang.String action)
Constructor, set Screen and Action. |
|
TurbineURI(RunData runData,
java.lang.String screen,
java.lang.String action,
boolean redirect)
Constructor, set Screen and Action, set explicit redirection. |
|
TemplateURI(RunData runData)
Constructor with a RunData object |
|
TemplateURI(RunData runData,
boolean redirect)
Constructor, set explicit redirection |
|
TemplateURI(RunData runData,
java.lang.String template)
Constructor, set Template |
|
TemplateURI(RunData runData,
java.lang.String template,
boolean redirect)
Constructor, set Template, set explicit redirection |
|
TemplateURI(RunData runData,
java.lang.String template,
java.lang.String action)
Constructor, set Template and Action |
|
TemplateURI(RunData runData,
java.lang.String template,
java.lang.String action,
boolean redirect)
Constructor, set Template and Action, set explicit redirection |
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 context object from the passed RunData object |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |