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

io.github.wimdeblauwe.jpearl.mavenplugin.entity-repository-impl-template Maven / Gradle / Ivy

The newest version!
package ;

import io.github.wimdeblauwe.jpearl.UniqueIdGenerator;

import ;

public class RepositoryImpl implements RepositoryCustom {
    private final UniqueIdGenerator<> generator;

    public RepositoryImpl(UniqueIdGenerator<> generator) {
        this.generator = generator;
    }

    @Override
    public  nextId() {
        return new (generator.getNextUniqueId());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy