List of usage examples for com.liferay.portal.kernel.security SecureRandomUtil nextLong
public static long nextLong()
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(); }