com.github.javafaker.Business Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.apio.architect.sample
Show all versions of com.liferay.apio.architect.sample
Liferay Apio Architect Sample
package com.github.javafaker;
public class Business {
private final Faker faker;
Business(Faker faker) {
this.faker = faker;
}
public String creditCardNumber() {
return faker.fakeValuesService().resolve("business.credit_card_numbers", this, faker);
}
public String creditCardType() {
return faker.fakeValuesService().resolve("business.credit_card_types", this, faker);
}
public String creditCardExpiry() {
return faker.fakeValuesService().resolve("business.credit_card_expiry_dates", this, faker);
}
}