Here you can find the source of generateConnectionId()
public static String generateConnectionId()
//package com.java2s; import java.util.UUID; public class Main { public static String generateConnectionId() { return UUID.randomUUID().toString(); }/*from w w w. j av a 2 s . c o m*/ }