| javax.servlet.http.HttpServletRequestWrapper net.jforum.context.web.WebRequestContext
All known Subclasses: net.jforum.http.FakeActionServletRequest,
changeAction | public void changeAction(String newAction)(Code) | | |
getAction | public String getAction()(Code) | | Gets the action of the current request.
An Action is the parameter name which specifies
what next action should be done by the system. It may be
add or edit a post, editing the groups, whatever. In the URL, the
Action can the represented in two forms:
http://www.host.com/webapp/servletName?module=groups&action=list
or
http://www.host.com/webapp/servletName/groups/list
In both situations, the action's name is "list".
String representing the action name |
getIntParameter | public int getIntParameter(String parameter)(Code) | | Gets an parameter that is a number.
A call to Integer#parseInt(String) is made
to do the conversion
Parameters: parameter - The parameter name to get the value int |
getModule | public String getModule()(Code) | | Gets the module of the current request.
A Module is the parameter name which specifies
what module the user is requesting. It may be the group
administration, the topics or anything else configured module.
In the URL, the Module can the represented in two forms:
http://www.host.com/webapp/servletName?module=groups&action=list
or
http://www.host.com/webapp/servletName/groups/list
In both situations, the module's name is "groups".
String representing the module name |
getObjectParameter | public Object getObjectParameter(String parameter)(Code) | | Gets some request parameter as Object .
This method may be used when you have to get some value
of a multipart/form-data request, like a image
of file.
Parameters: parameter - String Object |
|
|