com.github.ddth.lucext.utils.IdUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddth-lucext-core Show documentation
Show all versions of ddth-lucext-core Show documentation
DDTH's utilities and extensions for Apache Lucene
The newest version!
package com.github.ddth.lucext.utils;
import com.github.ddth.commons.utils.IdGenerator;
/**
* ID generator utility class.
*
* @author Thanh Nguyen
* @since 0.1.0
*/
public class IdUtils {
public final static IdGenerator ID_GEN = IdGenerator.getInstance(IdGenerator.getMacAddr());
/**
* Generate next ID.
*
* @return
*/
public static String nextId() {
return ID_GEN.generateId128Hex();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy