List of usage examples for javax.servlet.jsp PageContext getSession
abstract public HttpSession getSession();
From source file:org.vulpe.view.tags.Functions.java
public static HttpSession getSession(final PageContext pageContext) { return pageContext.getSession(); }
From source file:org.wso2.carbon.ui.taglibs.JSi18n.java
public static Locale getLocaleFromPageContext(PageContext pageContext) { if (pageContext.getSession().getAttribute(CarbonUIUtil.SESSION_PARAM_LOCALE) != null) { return CarbonUIUtil .toLocale(pageContext.getSession().getAttribute(CarbonUIUtil.SESSION_PARAM_LOCALE).toString()); } else {/*from ww w . java 2 s.c o m*/ return pageContext.getRequest().getLocale(); } }