com.devskiller.jfairy.producer.person.locale.pl.PlNationalIdentificationNumberFactory 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
Java fake data generator
package com.devskiller.jfairy.producer.person.locale.pl;
import javax.inject.Inject;
import com.devskiller.jfairy.producer.BaseProducer;
import com.devskiller.jfairy.producer.DateProducer;
import com.devskiller.jfairy.producer.person.NationalIdentificationNumberFactory;
import com.devskiller.jfairy.producer.person.NationalIdentificationNumberProperties;
public class PlNationalIdentificationNumberFactory implements NationalIdentificationNumberFactory {
private final BaseProducer baseProducer;
private final DateProducer dateProducer;
@Inject
public PlNationalIdentificationNumberFactory(BaseProducer baseProducer, DateProducer dateProducer) {
this.baseProducer = baseProducer;
this.dateProducer = dateProducer;
}
@Override
public PlNationalIdentificationNumberProvider produceNationalIdentificationNumberProvider(NationalIdentificationNumberProperties.Property... properties) {
return new PlNationalIdentificationNumberProvider(dateProducer, baseProducer, properties);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy