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

com.nortal.jroad.util.AttachmentUtil Maven / Gradle / Ivy

package com.nortal.jroad.util;

import java.util.UUID;

/**
 * Utility class for attachments
 * 
 * @author Dmitri Danilkin
 */
public class AttachmentUtil {
  private static long salt = 0;

  public static String getUniqueCid() {
    salt++;
    return UUID.randomUUID().toString() + String.valueOf(salt);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy