UUIDUtils.java 383 Bytes
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//

package com.tiptimes.util;

import java.util.UUID;

public class UUIDUtils {
    public UUIDUtils() {
    }

    public static String getUUID() {
        String uString = UUID.randomUUID().toString();
        uString = uString.replace("-", "");
        return uString;
    }
}