Uses of Class
javax.servlet.jsp.PageContext

Packages that use PageContext
com.arsdigita.acs   
com.arsdigita.acs.bboard   
com.arsdigita.acs.html   
javax.servlet.jsp   
javax.servlet.jsp.tagext   
 

Uses of PageContext in com.arsdigita.acs
 

Methods in com.arsdigita.acs with parameters of type PageContext
static UserInfo Security.getVerifiedUserInfo(PageContext pc, boolean redirect)
          Checks the current HttpSession for a set UserInfo object.
static UserInfo Security.getVerifiedUserInfo(PageContext pc)
          Same as getVerifiedUserInfo(pc, true).
static void Security.redirectForRegistration(PageContext pc)
          Redirects to /register.
static void Security.logoutUser(PageContext pc)
          Logs out the user.
static void Security.loginUser(PageContext pc, Integer userId, boolean forever)
           
 

Constructors in com.arsdigita.acs with parameters of type PageContext
Scope(PageContext pc)
          Pull out scoping variables, info about logged in user, etc., from the servlet request.
ContextBarWs(PageContext pageContext)
          For group-scoped modules, this constructor can create a context bar that contains the links set up by UserGroupFilter
 

Uses of PageContext in com.arsdigita.acs.bboard
 

Methods in com.arsdigita.acs.bboard with parameters of type PageContext
 boolean TopicsDataSource.authorizeUser(UserInfo user, PageContext pc)
          Verifies that a user can read messages for this topic.
 boolean TopicsDataSource.adminAuthorize(UserInfo user, PageContext pc)
          Verifies that a user can administer messages for this topic.
 

Uses of PageContext in com.arsdigita.acs.html
 

Methods in com.arsdigita.acs.html with parameters of type PageContext
 void Table.setPageContext(PageContext pc)
          Sets the JSP Page Context for the current request.
 

Constructors in com.arsdigita.acs.html with parameters of type PageContext
DimensionalBar(PageContext pc)
           
Table(PageContext pc)
          Public constructor
 

Uses of PageContext in javax.servlet.jsp
 

Methods in javax.servlet.jsp that return PageContext
abstract  PageContext JspFactory.getPageContext(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int buffer, boolean autoflush)
           obtains an instance of an implementation dependent javax.servlet.jsp.PageContext abstract class for the calling Servlet and currently pending request and response.
 

Methods in javax.servlet.jsp with parameters of type PageContext
abstract  void JspFactory.releasePageContext(PageContext pc)
           called to release a previously allocated PageContext object.
 

Uses of PageContext in javax.servlet.jsp.tagext
 

Fields in javax.servlet.jsp.tagext declared as PageContext
protected  PageContext TagSupport.pageContext
           
 

Methods in javax.servlet.jsp.tagext with parameters of type PageContext
 void TagSupport.setPageContext(PageContext pageContext)
          set the page context
 void Tag.setPageContext(PageContext pc)
          Set the current page context.