Here you can find the source of generateRecordingIdentifier()
public static String generateRecordingIdentifier()
//package com.java2s; //License from project: Open Source License import java.util.UUID; public class Main { public static String generateRecordingIdentifier() { return UUID.randomUUID().toString(); }//from w w w . jav a 2 s. com }