1 package tests.jfun.models;2 3 public interface BankAccountFactory {4 BankAccount create();5 BankAccount create(String id, int balance);6 }7