account.value.setName(name);
account.value.setBalance(100);
accounts.put(name, account.value);
result = true;
} else {
AccountAlreadyExistsExceptionType ex = new AccountAlreadyExistsExceptionType();
ex.setName(name);
throw new AccountAlreadyExistsException("Account Already Exists", ex);
}
return result;
}