Example usage for com.liferay.portal.kernel.security SecureRandomUtil nextLong

List of usage examples for com.liferay.portal.kernel.security SecureRandomUtil nextLong

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.security SecureRandomUtil nextLong.

Prototype

public static long nextLong() 

Source Link

Usage

From source file:com.liferay.osb.scv.user.mapper.internal.event.BaseEvent.java

License:Open Source License

protected String generateUUID() {
    UUID uuid = new UUID(SecureRandomUtil.nextLong(), SecureRandomUtil.nextLong());

    return uuid.toString();
}