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

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

Introduction

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

Prototype

public static void signOutSimultaneousLogins(long userId) 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#signOutSimultaneousLogins(
 *             long)}//  www . jav  a2 s.  c o  m
 */
@Deprecated
public static void signOutSimultaneousLogins(long userId) throws Exception {
    AuthenticatedSessionManagerUtil.signOutSimultaneousLogins(userId);
}