jfaker/src/main/java/com/github/javafaker/service/RandomService.java
2014-04-25 10:04:59 +10:00

21 lines
474 B
Java

package com.github.javafaker.service;
import org.apache.commons.lang.math.RandomUtils;
import java.util.Random;
public class RandomService {
private final Random random;
/**
* @param random If null is passed in, a default Random is assigned
*/
public RandomService(Random random) {
this.random = random != null ? random : RandomUtils.JVM_RANDOM;
}
public int nextInt(int n) {
return RandomUtils.nextInt(random, n);
}
}