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

play.utils.UuidGenerator Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.utils;

import java.util.UUID;

public class UuidGenerator {
  public String randomUUID() {
    return UUID.randomUUID().toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy