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

com.jdroid.java.utils.IdGenerator Maven / Gradle / Ivy

package com.jdroid.java.utils;

public class IdGenerator {
	
	private static Integer ID = 10000;
	
	public static synchronized Long getLongId() {
		ID++;
		return ID.longValue();
	}
	
	public static synchronized Integer getIntId() {
		return ID++;
	}
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy