|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of HttpServletRequest in com.arsdigita.acs |
Methods in com.arsdigita.acs with parameters of type HttpServletRequest | |
void |
RequestProcessor.service(HttpServletRequest req,
HttpServletResponse resp)
Handles an abstract URL in the request req, and executes filters on the request. |
static String |
Utilities.exportVars(HttpServletRequest req,
String vars,
boolean form)
Exports variables for use in a URL, as name=value&name=value..., or in a form (input type=hidden name=... |
static String |
Utilities.exportURLVars(HttpServletRequest req,
String vars)
Exports variables for use in a URL, as name=value&name=value..., |
static String |
Utilities.exportFormVars(HttpServletRequest req,
String vars)
|
static String |
Utilities.getCookieValue(HttpServletRequest request,
String withName)
Returns a cookie value as a String, given a cookie name. |
int |
Filter.filter(HttpServletRequest req,
HttpServletResponse resp,
ServletContext ctx)
The request filter interface. |
int |
Clickthrough.filter(HttpServletRequest req,
HttpServletResponse resp,
ServletContext ctx)
Handles a URL of the form /ct/local/URL?send_to=foreignURL. |
static void |
Security.redirectForRegistration(HttpServletRequest request,
HttpServletResponse response)
Redirects to /register. |
static UserInfo |
Security.getVerifiedUserInfo(HttpServletRequest req,
HttpServletResponse resp,
boolean redirect)
Checks the current HttpSession for a set UserInfo object. |
static UserInfo |
Security.getVerifiedUserInfo(HttpServletRequest req,
HttpServletResponse resp)
Same as getVerifiedUserInfo(req, resp, true) |
int |
AdminFilter.filter(HttpServletRequest req,
HttpServletResponse resp,
ServletContext ctx)
|
Constructors in com.arsdigita.acs with parameters of type HttpServletRequest | |
Scope(HttpServletRequest req,
HttpServletResponse resp)
|
|
ServletRequestDataSource(HttpServletRequest req)
|
|
AdSet(HttpServletRequest request)
Constructs an AdSet out of the parameter/value pairs in the servlet request. |
|
ClientIdentification(HttpServletRequest req,
HttpServletResponse resp)
Initializes the client identification information from the ad_browser_id and ad_session_id cookies. |
Uses of HttpServletRequest in com.arsdigita.acs.bboard |
Methods in com.arsdigita.acs.bboard with parameters of type HttpServletRequest | |
void |
DownloadFile.doGet(HttpServletRequest req,
HttpServletResponse resp)
|
Uses of HttpServletRequest in com.arsdigita.acs.calendar |
Methods in com.arsdigita.acs.calendar with parameters of type HttpServletRequest | |
static CalendarInfo |
CalendarProcs.initializeCalendarParameters(HttpServletRequest request,
Integer viewedUserId,
UserInfo loggedInUser,
Integer groupId,
String currentView,
String currentDate,
String compressDayViewP,
String viewMode,
String action)
Initializes calinfo variable and populates it with information used on calendar pages. |
static String |
CalendarProcs.calendarViewTitle(HttpServletRequest request)
Returns view title bar (a small table with title & left & right linked arrows). |
Uses of HttpServletRequest in com.arsdigita.acs.fs |
Methods in com.arsdigita.acs.fs with parameters of type HttpServletRequest | |
int |
Download.filter(HttpServletRequest req,
HttpServletResponse resp,
ServletContext ctx)
|
Uses of HttpServletRequest in com.arsdigita.acs.generalcomments |
Methods in com.arsdigita.acs.generalcomments with parameters of type HttpServletRequest | |
static String |
GeneralComments.formatGeneralComment(HttpServletRequest request,
int comment_id,
String client_file_name,
String file_type,
int original_width,
int original_height,
String caption,
String content,
boolean comment_html_p)
Helper procedure (for commentsSummarySorted in particular), to format one comment w/ appropriate attachment link. |
static String |
GeneralComments.formatGeneralComment(HttpServletRequest request,
int comment_id,
String client_file_name,
String file_type,
int original_width,
int original_height,
String caption,
String content,
boolean comment_html_p,
String one_line)
Helper procedure (for commentsSummarySorted in particular), to format one comment w/ appropriate attachment link. |
Uses of HttpServletRequest in com.arsdigita.acs.portals |
Methods in com.arsdigita.acs.portals with parameters of type HttpServletRequest | |
static UserInfo |
PortalsProcs.checkAdministratorMaybeRedirect(HttpServletRequest req,
HttpServletResponse resp,
Integer groupId)
Same as checkAdministratorMaybeRedirect(req, resp, groupId.toString(), null); |
static UserInfo |
PortalsProcs.checkAdministratorMaybeRedirect(HttpServletRequest req,
HttpServletResponse resp,
String groupId,
String redirectLocation)
Redirects to user registration unless the user is a portal administrator (role of "administrator" in the group "Super Administrators" of type "portal_group") |
static UserInfo |
PortalsProcs.checkAdministratorMaybeRedirect(HttpServletRequest req,
HttpServletResponse resp)
Same as checkAdministratorMaybeRedirect(req, resp, null, null) |
Uses of HttpServletRequest in com.arsdigita.acs.ug |
Methods in com.arsdigita.acs.ug with parameters of type HttpServletRequest | |
int |
UserGroupFilter.filter(HttpServletRequest req,
HttpServletResponse resp,
ServletContext ctx)
Processes an incoming URL under /groups or /(group-type) and sets appropriate request attributes for the requested URL. |
Uses of HttpServletRequest in javax.servlet.http |
Methods in javax.servlet.http with parameters of type HttpServletRequest | |
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method) to
allow a servlet to handle a GET request. |
protected long |
HttpServlet.getLastModified(HttpServletRequest req)
Returns the time the HttpServletRequest
object was last modified,
in milliseconds since midnight January 1, 1970 GMT. |
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method)
to allow a servlet to handle a POST request. |
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method)
to allow a servlet to handle a PUT request. |
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method)
to allow a servlet to handle a DELETE request. |
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method)
to allow a servlet to handle a OPTIONS request. |
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method)
to allow a servlet to handle a TRACE request. |
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse resp)
Receives standard HTTP requests from the public service method and dispatches
them to the do XXX methods defined in
this class. |
static StringBuffer |
HttpUtils.getRequestURL(HttpServletRequest req)
Reconstructs the URL the client used to make the request, using information in the HttpServletRequest object. |
Uses of HttpServletRequest in javax.servlet.jsp |
Methods in javax.servlet.jsp with parameters of type HttpServletRequest | |
void |
HttpJspPage._jspService(HttpServletRequest request,
HttpServletResponse response)
_jspService corresponds to the body of the JSP page. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |