public boolean createAccount(String name, javax.xml.ws.Holder<Account> account)
throws AccountAlreadyExistsException {
LOG.info("Executing operation createAccount");
boolean result = false;
if (accounts.get(name) == null) {
account.value = new Account();
account.value.setName(name);
account.value.setBalance(100);
accounts.put(name, account.value);
result = true;
} else {