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

io.baltoro.client.util.UUIDGenerator Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package io.baltoro.client.util;

import java.util.UUID;

public class UUIDGenerator 
{
	
	public static String uuid(String type) 
	{
		return UUID.randomUUID().toString().toUpperCase()+"_"+type;
	}
	
	public static String randomString(int len) 
	{
		return UUID.randomUUID().toString().substring(0, len).toUpperCase();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy