View Javadoc
1   package xuml.tools.model.compiler.runtime;
2   
3   import java.util.UUID;
4   
5   public final class ArbitraryId {
6   
7       private ArbitraryId() {
8           // prevent instantiation
9       }
10  
11      public static String next() {
12          return UUID.randomUUID().toString().replace("-", "");
13      }
14  
15  }