io.codearte.jfairy.data.DataMasterModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfairy Show documentation
Show all versions of jfairy Show documentation
jFairy - Java fake data generator
package io.codearte.jfairy.data;
import com.google.inject.AbstractModule;
import com.google.inject.Inject;
import com.google.inject.assistedinject.FactoryModuleBuilder;
import java.util.Random;
/**
* @author Olga Maciaszek-Sharma
* @since 2015-05-20
*/
public class DataMasterModule extends AbstractModule {
private Random random;
@Inject
public DataMasterModule(Random random) {
this.random = random;
}
@Override
protected void configure() {
bind(Random.class).toInstance(random);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy