Generates a random Business Identifier Code
()
| 51 | * Generates a random Business Identifier Code |
| 52 | */ |
| 53 | public String bic() { |
| 54 | return faker.regexify("([A-Z]){4}([A-Z]){2}([0-9A-Z]){2}([0-9A-Z]{3})?"); |
| 55 | } |
| 56 | |
| 57 | public String iban() { |
| 58 | List<String> countryCodes = new ArrayList<String>(countryCodeToBasicBankAccountNumberPattern.keySet()); |