All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbbbbb.sso.util.UUIDUtil Maven / Gradle / Ivy

The newest version!
package com.github.houbbbbb.sso.util;

import java.util.UUID;

/**
 * @author : hbw
 * @desctiption :
 * @date : 2020-05-22 14:14
 */
public class UUIDUtil {
    private UUIDUtil() {}

    public static String getUUID36(){
        return UUID.randomUUID().toString();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy