Example usage for com.liferay.portal.kernel.security.auth.session AuthenticatedSessionManagerUtil renewSession

List of usage examples for com.liferay.portal.kernel.security.auth.session AuthenticatedSessionManagerUtil renewSession

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.security.auth.session AuthenticatedSessionManagerUtil renewSession.

Prototype

public static HttpSession renewSession(HttpServletRequest httpServletRequest, HttpSession session)
            throws Exception 

Source Link

Usage

From source file:com.liferay.login.web.internal.portlet.util.LoginUtil.java

License:Open Source License

/**
 * @deprecated As of 1.1.0, replaced by {@link
 *             AuthenticatedSessionManagerUtil#renewSession(
 *             HttpServletRequest, HttpSession)}
 *//*from w w w . ja  v a 2s. c om*/
@Deprecated
public static HttpSession renewSession(HttpServletRequest request, HttpSession session) throws Exception {

    return AuthenticatedSessionManagerUtil.renewSession(request, session);
}