Properties props = new Properties();
props.load(TransferScript.class.getClassLoader()
.getResourceAsStream("com/bank/config/app.properties"));
TransferService transferService = new DefaultTransferService(
new JdbcAccountRepository(dataSource),
new FlatFeePolicy(Double.valueOf(props.getProperty("flatfee.amount"))));
transferService.setMinimumTransferAmount(
Double.valueOf(props.getProperty("minimum.transfer.amount")));