|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HttpServletResponse | |
com.arsdigita.acs | |
com.arsdigita.acs.bboard | |
com.arsdigita.acs.fs | |
com.arsdigita.acs.portals | |
com.arsdigita.acs.ug | |
javax.servlet.http | |
javax.servlet.jsp |
Uses of HttpServletResponse in com.arsdigita.acs |
Methods in com.arsdigita.acs with parameters of type HttpServletResponse | |
void |
RequestProcessor.service(HttpServletRequest req,
HttpServletResponse resp)
Handles an abstract URL in the request req, and executes filters on the request. |
static void |
Utilities.sendRedirect(HttpServletResponse response,
String location)
Analogous to HttpServletResponse.sendRedirect(), but necessary for redirecting if there have been any headers set (such as cookie headers), since (in at least the Tomcat implementation) sendRedirect() ignores any header objects attached to the response. |
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 HttpServletResponse | |
Scope(HttpServletRequest req,
HttpServletResponse resp)
|
|
ClientIdentification(HttpServletRequest req,
HttpServletResponse resp)
Initializes the client identification information from the ad_browser_id and ad_session_id cookies. |
Uses of HttpServletResponse in com.arsdigita.acs.bboard |
Methods in com.arsdigita.acs.bboard with parameters of type HttpServletResponse | |
void |
DownloadFile.doGet(HttpServletRequest req,
HttpServletResponse resp)
|
Uses of HttpServletResponse in com.arsdigita.acs.fs |
Methods in com.arsdigita.acs.fs with parameters of type HttpServletResponse | |
int |
Download.filter(HttpServletRequest req,
HttpServletResponse resp,
ServletContext ctx)
|
Uses of HttpServletResponse in com.arsdigita.acs.portals |
Methods in com.arsdigita.acs.portals with parameters of type HttpServletResponse | |
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 HttpServletResponse in com.arsdigita.acs.ug |
Methods in com.arsdigita.acs.ug with parameters of type HttpServletResponse | |
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 HttpServletResponse in javax.servlet.http |
Classes in javax.servlet.http that implement HttpServletResponse | |
(package private) class |
NoBodyResponse
|
Methods in javax.servlet.http with parameters of type HttpServletResponse | |
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 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. |
Constructors in javax.servlet.http with parameters of type HttpServletResponse | |
NoBodyResponse(HttpServletResponse r)
|
Uses of HttpServletResponse in javax.servlet.jsp |
Methods in javax.servlet.jsp with parameters of type HttpServletResponse | |
void |
HttpJspPage._jspService(HttpServletRequest request,
HttpServletResponse response)
_jspService corresponds to the body of the JSP page. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |