|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectlive.struts.actions.CheckedAction.ActionInfo
Field Summary | |
Cache |
cache
The cache from the servlet context |
org.apache.struts.action.ActionForm |
form
|
org.apache.struts.action.ActionMapping |
mapping
|
HttpServletRequest |
request
|
HttpServletResponse |
response
|
ThreadInitInfo |
threadInfo
The thread info from the session |
Constructor Summary | |
CheckedAction.ActionInfo(org.apache.struts.action.ActionMapping mapping,
org.apache.struts.action.ActionForm form,
HttpServletRequest request,
HttpServletResponse response,
ThreadInitInfo tii,
Cache cache)
Makes an ActionInfo with the specified field names |
Method Summary | |
(package private) org.apache.struts.action.ActionForward |
findForward(String fwdName)
|
(package private) Object |
getRequestAttribute(String attributeName)
This is a passthrough to the request's ServletRequest.getAttribute(String)
function. |
(package private) String |
getRequestParameter(String param)
This is a passthrough to the request's ServletRequest.getParameter(String)
function. |
(package private) void |
setRequestAttribute(String attributeName,
Object attributeValue)
This is a passthrough to the request's ServletRequest.setAttribute(String, Object)
function. |
org.apache.struts.action.ActionForward |
smartForward(ThreadedUserAction thread,
String defaultForward)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public org.apache.struts.action.ActionMapping mapping
public org.apache.struts.action.ActionForm form
public HttpServletRequest request
public HttpServletResponse response
public ThreadInitInfo threadInfo
public Cache cache
Constructor Detail |
public CheckedAction.ActionInfo(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, HttpServletRequest request, HttpServletResponse response, ThreadInitInfo tii, Cache cache)
Method Detail |
String getRequestParameter(String param)
ServletRequest.getParameter(String)
function. It's just for source prettyness than anything, so rather
than say myActionInfo.request.getParameter you can say
myActionInfo.getRequestParameter
param
- The request parameter to get
void setRequestAttribute(String attributeName, Object attributeValue)
ServletRequest.setAttribute(String, Object)
function. It's just for source prettyness than anything, so rather
than say myActionInfo.request.setAttribute you can say
myActionInfo.setRequestAttribute
attributeName
- The attribute to setattributeValue
- The value to set the attribute toObject getRequestAttribute(String attributeName)
ServletRequest.getAttribute(String)
function. It's just for source prettyness than anything, so rather
than say myActionInfo.request.getAttribute you can say
myActionInfo.getRequestAttribute
attributeName
- The request attribute to get
org.apache.struts.action.ActionForward findForward(String fwdName)
public org.apache.struts.action.ActionForward smartForward(ThreadedUserAction thread, String defaultForward)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |