Package org.apache.turbine.util
Interface RunData
-
- All Superinterfaces:
AutoCloseable,PipelineData
- All Known Subinterfaces:
TurbineRunData
- All Known Implementing Classes:
DefaultTurbineRunData
public interface RunData extends PipelineData
RunData is an interface to run-time information that is passed within Turbine. This provides the threading mechanism for the entire system because multiple requests can potentially come in at the same time. Thus, there is only one RunData instance for each request that is being serviced.- Version:
- $Id$
- Author:
- Ilkka Priha, Jon S. Stevens, Bernie Hoeneisen, Daniel Rall, Quinton McCombs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddMessage(String msg)Adds the string to message.voiddeclareDirectResponse()Declares that output will be direct to the response stream, even though getOut() may never be called.<A extends org.apache.fulcrum.security.acl.AccessControlList>
AgetACL()Gets the access control list.StringgetAction()Gets the action.CharsetgetCharset()Gets the charset.StringgetCharSet()Deprecated.StringgetContentType()Gets the HTTP content type to return.StringgetContextPath()Gets the cached context path.org.apache.fulcrum.parser.CookieParsergetCookies()Gets the cookies.Map<String,Object>getDebugVariables()Gets a Map of debug variables.Map<String,Context>getJNDIContexts()Gets JNDI Contexts.StringgetLayout()If the Layout has not been defined by the screen then set the layout to be "DefaultLayout".StringgetLayoutTemplate()Convenience method for a template info that returns the layout template being used.LocalegetLocale()Gets the locale.StringgetMessage()Gets the results of an action or another message to be displayed as a string.StringgetMessageAsHTML()Gets the results of an action or another message to be displayed as a string.FormMessagesgetMessages()Gets a FormMessages object where all the messages to the user should be stored.PrintWritergetOut()Gets the print writer.org.apache.fulcrum.parser.ParameterParsergetParameters()Gets the parameters.StringgetRedirectURI()Gets the redirect URI.StringgetRemoteAddr()Gets the IP address of the client that sent the request.StringgetRemoteHost()Gets the qualified name of the client that sent the request.HttpServletRequestgetRequest()Gets the servlet request.HttpServletResponsegetResponse()Gets the servlet response.StringgetScreen()Gets the screen to execute.StringgetScreenTemplate()Convenience method for a template info that returns the name of the template being used.StringgetScriptName()Gets the cached script name.ServerDatagetServerData()Gets the server data used by the request.StringgetServerName()Gets the cached server name.intgetServerPort()Gets the cached server port.StringgetServerScheme()Gets the cached server scheme.ServletConfiggetServletConfig()Gets the servlet configuration used during servlet init.ServletContextgetServletContext()Gets the servlet context used during servlet init.HttpSessiongetSession()Gets the servlet session information.StringgetStackTrace()Gets the stack trace if set.ThrowablegetStackTraceException()Gets the stack trace exception if set.intgetStatusCode()Gets the HTTP status code to return.SystemError[]getSystemErrors()Gets an array of system errors.StringgetTemplateEncoding()Gets the character encoding to use for reading template files.TemplateInfogetTemplateInfo()Gets the template info.StringgetTitle()Gets the title of the page.<T extends User>
TgetUser()Gets the user.StringgetUserAgent()Get the user agent for the request.<T extends User>
TgetUserFromSession()Attempts to get the user from the session.booleanhasAction()Whether or not an action has been defined.booleanhasMessage()Whether or not a message has been defined.booleanhasScreen()Whether or not a screen has been defined.booleanisOutSet()Deprecated.no replacement planned, response writer will not be cachedvoidpopulate()Pulls a user object from the session and increments the access counter and sets the last access date for the object.booleanremoveUserFromSession()Allows one to invalidate the user in the default session.voidsave()Saves a user object into the session.<A extends org.apache.fulcrum.security.acl.AccessControlList>
voidsetACL(A acl)Sets the access control list.voidsetAction(String action)Sets the action for the request.voidsetCharset(Charset charset)Sets the charset.voidsetCharSet(String charset)Deprecated.voidsetContentType(String ct)Sets the HTTP content type to return.voidsetDebugVariable(String name, Object value)Sets a name/value pair in an internal Map that is accessible from the Error screen.voidsetJNDIContexts(Map<String,Context> contexts)Sets JNDI Contexts.voidsetLayout(String layout)Set the layout for the request.voidsetLayoutTemplate(String layout)Modifies the layout template for the screen.voidsetLocale(Locale locale)Sets the locale.voidsetMessage(String msg)Sets the message for the request as a string.voidsetMessages(FormMessages msgs)Sets the FormMessages object for the request.voidsetRedirectURI(String ruri)Sets the redirect uri.voidsetScreen(String screen)Sets the screen for the request.voidsetScreenTemplate(String screen)Sets the screen template for the request.voidsetStackTrace(String trace, Throwable exp)Sets the stack trace.voidsetStatusCode(int sc)Sets the HTTP status code to return.voidsetSystemError(SystemError err)Adds a critical system error.voidsetTemplateEncoding(String encoding)Sets the character encoding to use for reading template files.voidsetTitle(String title)Sets the title of the page.<T extends User>
voidsetUser(T user)Sets the user.voidunsetMessage()Unsets the message for the request.booleanuserExists()Checks if a user exists in this session.-
Methods inherited from interface java.lang.AutoCloseable
close
-
Methods inherited from interface org.apache.turbine.pipeline.PipelineData
get, get, getRunData, put
-
-
-
-
Method Detail
-
getParameters
org.apache.fulcrum.parser.ParameterParser getParameters()
Gets the parameters.- Returns:
- a parameter parser.
-
getCookies
org.apache.fulcrum.parser.CookieParser getCookies()
Gets the cookies.- Returns:
- a cookie parser.
-
getRequest
HttpServletRequest getRequest()
Gets the servlet request.- Returns:
- the request.
-
getResponse
HttpServletResponse getResponse()
Gets the servlet response.- Returns:
- the resposne.
-
getSession
HttpSession getSession()
Gets the servlet session information.- Returns:
- the session.
-
getServletConfig
ServletConfig getServletConfig()
Gets the servlet configuration used during servlet init.- Returns:
- the configuration.
-
getServletContext
ServletContext getServletContext()
Gets the servlet context used during servlet init.- Returns:
- the context.
-
getACL
<A extends org.apache.fulcrum.security.acl.AccessControlList> A getACL()
Gets the access control list.- Type Parameters:
A- a type extendingAccessControlList- Returns:
- the access control list.
-
setACL
<A extends org.apache.fulcrum.security.acl.AccessControlList> void setACL(A acl)
Sets the access control list.- Type Parameters:
A- ACL type- Parameters:
acl- an access control list.
-
hasAction
boolean hasAction()
Whether or not an action has been defined.- Returns:
- true if an action has been defined.
-
getAction
String getAction()
Gets the action. It returns an empty string if null so that it is easy to do conditionals on it based on the equalsIgnoreCase() method.- Returns:
- a string, "" if null.
-
setAction
void setAction(String action)
Sets the action for the request.- Parameters:
action- a string.
-
getLayout
String getLayout()
If the Layout has not been defined by the screen then set the layout to be "DefaultLayout". The screen object can also override this method to provide intelligent determination of the Layout to execute. You can also define that logic here as well if you want it to apply on a global scale. For example, if you wanted to allow someone to define layout "preferences" where they could dynamically change the layout for the entire site.- Returns:
- a string.
-
setLayout
void setLayout(String layout)
Set the layout for the request.- Parameters:
layout- a string.
-
getLayoutTemplate
String getLayoutTemplate()
Convenience method for a template info that returns the layout template being used.- Returns:
- a string.
-
setLayoutTemplate
void setLayoutTemplate(String layout)
Modifies the layout template for the screen. This convenience method allows for a layout to be modified from within a template. For example; $data.setLayoutTemplate("NewLayout.vm")- Parameters:
layout- a layout template.
-
hasScreen
boolean hasScreen()
Whether or not a screen has been defined.- Returns:
- true if a screen has been defined.
-
setScreen
void setScreen(String screen)
Sets the screen for the request.- Parameters:
screen- a string.
-
getScreenTemplate
String getScreenTemplate()
Convenience method for a template info that returns the name of the template being used.- Returns:
- a string.
-
setScreenTemplate
void setScreenTemplate(String screen)
Sets the screen template for the request. For example; $data.setScreenTemplate("NewScreen.vm")- Parameters:
screen- a screen template.
-
getTemplateEncoding
String getTemplateEncoding()
Gets the character encoding to use for reading template files.- Returns:
- the template encoding or null if not specified.
-
setTemplateEncoding
void setTemplateEncoding(String encoding)
Sets the character encoding to use for reading template files.- Parameters:
encoding- the template encoding.
-
getTemplateInfo
TemplateInfo getTemplateInfo()
Gets the template info. Creates a new one if needed.- Returns:
- a template info.
-
hasMessage
boolean hasMessage()
Whether or not a message has been defined.- Returns:
- true if a message has been defined.
-
getMessage
String getMessage()
Gets the results of an action or another message to be displayed as a string.- Returns:
- a string.
-
setMessage
void setMessage(String msg)
Sets the message for the request as a string.- Parameters:
msg- a string.
-
addMessage
void addMessage(String msg)
Adds the string to message. If message has prior messages from other actions or screens, this method can be used to chain them.- Parameters:
msg- a string.
-
getMessageAsHTML
String getMessageAsHTML()
Gets the results of an action or another message to be displayed as a string.- Returns:
- a string.
-
unsetMessage
void unsetMessage()
Unsets the message for the request.
-
getMessages
FormMessages getMessages()
Gets a FormMessages object where all the messages to the user should be stored.- Returns:
- a FormMessages.
-
setMessages
void setMessages(FormMessages msgs)
Sets the FormMessages object for the request.- Parameters:
msgs- A FormMessages.
-
userExists
boolean userExists()
Checks if a user exists in this session.- Returns:
- true if a user exists in this session.
-
getUser
<T extends User> T getUser()
Gets the user.- Type Parameters:
T- a type extendingUser- Returns:
- a user.
-
setUser
<T extends User> void setUser(T user)
Sets the user.- Type Parameters:
T- a type extendingUser- Parameters:
user- a user.
-
getUserFromSession
<T extends User> T getUserFromSession()
Attempts to get the user from the session. If it does not exist, it returns null.- Type Parameters:
T- a type extendingUser- Returns:
- a user.
-
removeUserFromSession
boolean removeUserFromSession()
Allows one to invalidate the user in the default session.- Returns:
- true if user was invalidated.
-
isOutSet
@Deprecated boolean isOutSet()
Deprecated.no replacement planned, response writer will not be cachedChecks to see if out is set.- Returns:
- true if out is set.
-
getOut
PrintWriter getOut() throws IOException
Gets the print writer. First time calling this will set the print writer via the response.- Returns:
- a print writer.
- Throws:
IOException- on failure getting the PrintWriter
-
declareDirectResponse
void declareDirectResponse()
Declares that output will be direct to the response stream, even though getOut() may never be called. Useful for response mechanisms that may call res.getWriter() themselves (such as JSP.)
-
getLocale
Locale getLocale()
Gets the locale. If it has not already been defined with setLocale(), then properties named "locale.default.lang" and "locale.default.country" are checked from the Resource Service and the corresponding locale is returned. If these properties are undefined, JVM's default locale is returned.- Returns:
- the locale.
-
getCharSet
@Deprecated String getCharSet()
Deprecated.Gets the charset. If it has not already been defined with setCharSet(), then a property named "locale.default.charset" is checked from the Resource Service and returned. If this property is undefined, the default charset of the locale is returned. If the locale is undefined, null is returned.- Returns:
- the name of the charset or null.
-
setCharSet
@Deprecated void setCharSet(String charset)
Deprecated.Sets the charset.- Parameters:
charset- the name of the new charset.
-
getCharset
Charset getCharset()
Gets the charset. If it has not already been defined with setCharSet(), then a property named "locale.default.charset" is checked from the Resource Service and returned. If this property is undefined, the default charset of the locale is returned. If the locale is undefined, null is returned.- Returns:
- the charset or null.
-
setCharset
void setCharset(Charset charset)
Sets the charset.- Parameters:
charset- the new charset.
-
getContentType
String getContentType()
Gets the HTTP content type to return. If a charset has been specified, it is included in the content type. If the charset has not been specified and the main type of the content type is "text", the default charset is included. If the default charset is undefined, but the default locale is defined and it is not the US locale, a locale specific charset is included.- Returns:
- the content type or an empty string.
-
setContentType
void setContentType(String ct)
Sets the HTTP content type to return.- Parameters:
ct- the new content type.
-
getRedirectURI
String getRedirectURI()
Gets the redirect URI. If this is set, also make sure to set the status code to 302.- Returns:
- a string, "" if null.
-
setRedirectURI
void setRedirectURI(String ruri)
Sets the redirect uri. If this is set, also make sure to set the status code to 302.- Parameters:
ruri- a string.
-
getStatusCode
int getStatusCode()
Gets the HTTP status code to return.- Returns:
- the status.
-
setStatusCode
void setStatusCode(int sc)
Sets the HTTP status code to return.- Parameters:
sc- the status.
-
getSystemErrors
SystemError[] getSystemErrors()
Gets an array of system errors.- Returns:
- a SystemError[].
-
setSystemError
void setSystemError(SystemError err)
Adds a critical system error.- Parameters:
err- a system error.
-
getJNDIContexts
Map<String,Context> getJNDIContexts()
Gets JNDI Contexts.- Returns:
- a hashtable.
-
setJNDIContexts
void setJNDIContexts(Map<String,Context> contexts)
Sets JNDI Contexts.- Parameters:
contexts- a hashtable.
-
getServerScheme
String getServerScheme()
Gets the cached server scheme.- Returns:
- a string.
-
getServerName
String getServerName()
Gets the cached server name.- Returns:
- a string.
-
getServerPort
int getServerPort()
Gets the cached server port.- Returns:
- an int.
-
getContextPath
String getContextPath()
Gets the cached context path.- Returns:
- a string.
-
getScriptName
String getScriptName()
Gets the cached script name.- Returns:
- a string.
-
getServerData
ServerData getServerData()
Gets the server data used by the request.- Returns:
- server data.
-
getRemoteAddr
String getRemoteAddr()
Gets the IP address of the client that sent the request.- Returns:
- a string.
-
getRemoteHost
String getRemoteHost()
Gets the qualified name of the client that sent the request.- Returns:
- a string.
-
getUserAgent
String getUserAgent()
Get the user agent for the request.- Returns:
- a string.
-
populate
void populate()
Pulls a user object from the session and increments the access counter and sets the last access date for the object.
-
save
void save()
Saves a user object into the session.
-
getStackTrace
String getStackTrace()
Gets the stack trace if set.- Returns:
- the stack trace.
-
getStackTraceException
Throwable getStackTraceException()
Gets the stack trace exception if set.- Returns:
- the stack exception.
-
setStackTrace
void setStackTrace(String trace, Throwable exp)
Sets the stack trace.- Parameters:
trace- the stack trace.exp- the exception.
-
setDebugVariable
void setDebugVariable(String name, Object value)
Sets a name/value pair in an internal Map that is accessible from the Error screen. This is a good way to get debugging information when an exception is thrown.- Parameters:
name- name of the variablevalue- value of the variable.
-
getDebugVariables
Map<String,Object> getDebugVariables()
Gets a Map of debug variables.- Returns:
- a Map of debug variables.
-
-